Home | History | Annotate | Download | only in rexx

Lines Matching refs:bot

2     unsigned cnt = s->tok - s->bot;
7 memcpy(s->bot, s->tok, len);
8 s->eot = &s->bot[len];
14 memcpy(s->bot, s->tok, s->lim - s->tok);
18 s->tok = s->bot;
22 uchar *buf = (uchar*) malloc(((s->lim - s->bot) + 512)*sizeof(uchar));
23 memcpy(buf, s->bot, s->lim - s->bot);
25 s->ptr = &buf[s->ptr - s->bot];
27 s->eot = &buf[s->eot - s->bot];
28 cursor = &buf[cursor - s->bot];
29 s->lim = &buf[s->lim - s->bot];
31 free(s->bot);
32 s->bot = buf;