Searched refs:PPBUFSIZ (Results 1 – 6 of 6) sorted by relevance
/titanic_41/usr/src/lib/libpp/common/ |
H A D | pp.h | 68 #define PPBUFSIZ (32*PPBLKSIZ) /* io buffer size */ macro 69 #define PPTOKSIZ ((PPBUFSIZ/2)-1) /* max token size */ 78 …PPBUFSIZ);if(pp.outbuf==pp.outb){pp.outbuf+=PPBUFSIZ;pp.oute+=PPBUFSIZ;}else{pp.outbuf-=PPBUFSIZ;m…
|
H A D | ppdata.c | 63 static char outbuf[2*(PPBUFSIZ+MAXTOKEN)];/* output buffer */ 104 &outbuf[PPBUFSIZ], /* oute */
|
H A D | pplex.c | 69 …PPBUFSIZ);if(pp.outbuf==pp.outb){pp.outbuf+=PPBUFSIZ;xp=pp.oute+=PPBUFSIZ;}else{pp.outbuf-=PPBUFSI… 70 …PPBUFSIZ);if(pp.outbuf==pp.outb){pp.outbuf+=PPBUFSIZ;xp=pp.oute+=PPBUFSIZ;}else{pp.outbuf-=PPBUFSI… 71 …PPBUFSIZ);if(pp.outbuf==pp.outb){pp.outbuf+=PPBUFSIZ;xp=pp.oute+=PPBUFSIZ;}else{pp.outbuf-=PPBUFSI… 1360 if (op + c < xp + PPBUFSIZ) n = c; in ppcpp() 1361 else n = xp + PPBUFSIZ - op; in ppcpp()
|
H A D | ppbuiltin.c | 280 #define BACK(a,p) ((a>p)?*--a:(number++?0:((p=pp.outbuf+PPBUFSIZ),(a=pp.outbuf+2*PPBUFSIZ),*--a))) in ppbuiltin() 281 #define PEEK(a,p) ((a>p)?*(a-1):(number?0:*(pp.outbuf+2*PPBUFSIZ-1))) in ppbuiltin() 335 for (; a < pp.outbuf+2*PPBUFSIZ; *p++ = *a++); in ppbuiltin()
|
H A D | ppinput.c | 176 *(p = (cur->buffer = oldof(0, char, 0, PPBUFSIZ + PPBAKSIZ + 1)) + PPBAKSIZ) = 0; in pppush() 549 p = PPBUFSIZ - (pp.outp - pp.outbuf); in ppload() 581 PPWRITE(PPBUFSIZ); in ppload() 584 p = PPBUFSIZ; in ppload()
|
H A D | ppfsm.c | 904 read(pp.in->fd, pp.in->nextchr, PPBUFSIZ); in refill() 913 if (c < PPBUFSIZ && (pp.in->flags & IN_regular)) in refill()
|