Home | History | Annotate | Download | only in libyasm

Lines Matching refs:bot

58     s->bot = NULL;
70 if (s->bot) {
71 yasm_xfree(s->bot);
72 s->bot = NULL;
88 cnt = s->tok - s->bot;
90 memmove(s->bot, s->tok, (size_t)(s->lim - s->tok));
91 s->tok = s->bot;
96 if (!s->bot)
99 unsigned char *buf = yasm_xmalloc((size_t)(s->lim - s->bot) + BSIZE);
102 s->ptr = &buf[s->ptr - s->bot];
103 *cursor = &buf[*cursor - s->bot];
104 s->lim = &buf[s->lim - s->bot];
106 if (s->bot)
107 yasm_xfree(s->bot);
108 s->bot = buf;