Lines Matching refs:lim
88 #define YYLIMIT s->lim
136 uchar *lim, *str, *ptr, *cur, *tok, *pos;
323 memcpy(s->bot, s->tok, s->lim - s->tok);
328 s->lim -= cnt;
330 if((s->top - s->lim) < BSIZE){
331 uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar));
332 memcpy(buf, s->tok, s->lim - s->tok);
337 s->lim = &buf[s->lim - s->bot];
338 s->top = &s->lim[BSIZE];
342 if((cnt = read(s->fd, (char*) s->lim, BSIZE)) != BSIZE){
343 s->eof = &s->lim[cnt]; *(s->eof)++ = '\n';
345 s->lim += cnt;
2037 in.lim = in.str + (e - s) + YYMAXFILL;