Lines Matching refs:lim
107 #define YYLIMIT s->lim
157 uchar *lim, *str, *ptr, *cur, *tok, *pos;
317 memcpy(s->bot, s->tok, s->lim - s->tok);
322 s->lim -= cnt;
324 if((s->top - s->lim) < BSIZE){
325 uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar));
326 memcpy(buf, s->tok, s->lim - s->tok);
331 s->lim = &buf[s->lim - s->bot];
332 s->top = &s->lim[BSIZE];
336 if((cnt = read(s->fd, (char*) s->lim, BSIZE)) != BSIZE){
337 s->eof = &s->lim[cnt]; *(s->eof)++ = '\n';
339 s->lim += cnt;
1772 in.lim = in.str + (e - s) + YYMAXFILL;