Home
last modified time | relevance | path

Searched refs:RECSIZE (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/oawk/
H A Dlib.c41 #define RECSIZE (5 * 512) macro
42 wchar_t record[RECSIZE];
43 wchar_t fields[RECSIZE];
90 er = record + RECSIZE; in getrec()
308 if (r > record+RECSIZE) in recbld()
435 static char euccode[RECSIZE];
437 (void) wcstombs(euccode, str, RECSIZE);
H A Drun.c41 #define RECSIZE BUFSIZ macro
441 wchar_t tbuf[2*RECSIZE]; in format()
448 p = buf= (wchar_t *)malloc(RECSIZE * sizeof (wchar_t)); in format()
452 ep = p + RECSIZE; in format()
536 if (wslen(tbuf) >= RECSIZE) in format()
550 newlen = oldlen + wslen(str) + RECSIZE; in format()
1093 wchar_t s[RECSIZE]; in print()
1099 ep = s + RECSIZE; in print()
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/
H A DT.misc510 a = (RECSIZE % 2 > 0 ? "5" : "55");
511 while (length(a) < RECSIZE + c) {
/illumos-gate/usr/src/cmd/awk/
H A Dlib.c69 size_t recsize = RECSIZE;
71 static size_t fieldssize = RECSIZE;
73 static size_t rtbufsize = RECSIZE;
H A Dawk.h88 #define RECSIZE (8 * 1024) /* sets limit on records, fields, etc., etc. */ macro