Searched defs:PUSHBACK (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/ucblib/libucb/inc/
H A Dstdiom.h55 * of PUSHBACK plus the first byte of the buffer. The FILE buffer must,
57 * of PUSHBACK should be a multiple of word.
58 * At least 4 bytes of PUSHBACK are needed. If sizeof(int) = 1 this breaks.
61 #define PUSHBACK ((int)(((3 + sizeof (int) - 1) / sizeof (int)) * sizeof (int))) macro
64 #define _SMBFSZ (((PUSHBACK + 4) < 8) ? 8 : (PUSHBACK + 4))
/illumos-gate/usr/src/lib/libc/inc/
H A Dstdiom.h109 * of PUSHBACK plus the first byte of the buffer. The FILE buffer must,
111 * of PUSHBACK should be a multiple of word.
112 * At least 4 bytes of PUSHBACK are needed. If sizeof (int) = 1 this breaks.
114 #define PUSHBACK (((3 + sizeof (int) - 1) / sizeof (int)) * sizeof (int)) macro
117 #define _SMBFSZ (((PUSHBACK + 4) < 8) ? 8 : (PUSHBACK + 4))
/illumos-gate/usr/src/cmd/eqn/
H A Dlex.c25 #define PUSHBACK 300 /* maximum pushback characters */ macro
26 char ibuf[PUSHBACK+SSIZE]; /* pushback buffer for definitions, etc. */
85 if (ip >= &ibuf[PUSHBACK])

Completed in 234 milliseconds