Home
last modified time | relevance | path

Searched refs:NLINE (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/cmd/awk_xpg4/
H A Dawk2.c77 if ((*awkrecord)(ep, NLINE, fp) == NULL) { in nextrecord()
105 if (reclen > NLINE - 2) { in nextrecord()
107 NLINE - 1); in nextrecord()
565 cp = emalloc(NLINE * sizeof (wchar_t)); in f_getline()
H A Dawk.h64 #define NLINE 20000 /* Longest input record */ macro
68 #define NLINE 2048 /* Longest input record */ macro
H A Dawk3.c1559 fieldbuf = emalloc(NLINE * sizeof (wchar_t)); in fieldsplit()
1616 fieldbuf = emalloc(NLINE * sizeof (wchar_t)); in lfield()
1629 if (op+newlen >= fieldbuf+NLINE) in lfield()
1630 awkerr(toolong, NLINE); in lfield()
1651 if (op >= &linebuf[NLINE]) in lfield()
1652 awkerr(toolong, NLINE); in lfield()
H A Dawk1.c93 linebuf = emalloc(NLINE * sizeof (wchar_t)); in main()