Home | History | Annotate | Download | only in bootstrap

Lines Matching refs:bot

31     s->bot = s->tok = s->ptr = s->cur = s->pos = s->lim = s->top =
41 unsigned int cnt = s->tok - s->bot;
43 memcpy(s->bot, s->tok, s->lim - s->tok);
44 s->tok = s->bot;
51 unsigned char *buf = malloc(((s->lim - s->bot) + BSIZE));
54 s->ptr = &buf[s->ptr - s->bot];
55 cursor = &buf[cursor - s->bot];
56 s->pos = &buf[s->pos - s->bot];
57 s->lim = &buf[s->lim - s->bot];
59 if (s->bot)
60 free(s->bot);
61 s->bot = buf;