Searched refs:EBUFSIZ (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/cmd/bnu/ |
H A D | eio.c | 44 #define EBUFSIZ 1024 macro 55 static char Erdstash[EBUFSIZ]; 138 char bufr[EBUFSIZ]; 175 while ((len = read( fd1, bufr, EBUFSIZ )) > 0) { 207 char bufr[EBUFSIZ]; 250 len = erdblk(bufr, (int) MIN(msglen, EBUFSIZ), fn); 472 i = EBUFSIZ; 531 char bufr[EBUFSIZ], *endstr;
|
/titanic_41/usr/src/cmd/egrep/ |
H A D | egrep.y | 67 #define EBUFSIZ 8192 macro 801 lBufSiz = EBUFSIZ; in execute() 802 if ((buf = malloc (lBufSiz + EBUFSIZ)) == NULL) { in execute() 819 if((count = read(fileno(f), buf, EBUFSIZ)) <= 0) { in execute() 850 lBufSiz += EBUFSIZ; in execute() 851 if ((buf = realloc (buf, lBufSiz + EBUFSIZ)) == NULL) { in execute() 859 if((count1 = read(fileno(f), p, EBUFSIZ)) > 0) { in execute() 950 if((count = read(fileno(f), buf, EBUFSIZ)) <= 0) in execute()
|