Home | History | Annotate | Download | only in rexx

Lines Matching full:lim

9             if((len = s->lim - cursor) != 0)
12 s->lim = &cursor[len];
14 memcpy(s->bot, s->tok, s->lim - s->tok);
16 s->lim -= cnt;
21 if((s->top - s->lim) < 512){
22 uchar *buf = (uchar*) malloc(((s->lim - s->bot) + 512)*sizeof(uchar));
23 memcpy(buf, s->bot, s->lim - s->bot);
29 s->lim = &buf[s->lim - s->bot];
30 s->top = &s->lim[512];
36 if((cnt = read(ScanCBIO.u.f.fd, (char*) s->lim, 512)) != 512)
37 memset(&s->lim[cnt], 0, 512 - cnt);
38 s->lim += 512;