bot 316 ext/date/lib/parse_date.c unsigned int cnt = s->tok - s->bot; bot 318 ext/date/lib/parse_date.c memcpy(s->bot, s->tok, s->lim - s->tok); bot 319 ext/date/lib/parse_date.c s->tok = s->bot; bot 326 ext/date/lib/parse_date.c uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar)); bot 329 ext/date/lib/parse_date.c s->ptr = &buf[s->ptr - s->bot]; bot 330 ext/date/lib/parse_date.c cursor = &buf[cursor - s->bot]; bot 331 ext/date/lib/parse_date.c s->pos = &buf[s->pos - s->bot]; bot 332 ext/date/lib/parse_date.c s->lim = &buf[s->lim - s->bot]; bot 334 ext/date/lib/parse_date.c timelib_free(s->bot); bot 335 ext/date/lib/parse_date.c s->bot = buf; bot 1513 ext/pcre/pcrelib/pcre_compile.c int i, bot, top; bot 1555 ext/pcre/pcrelib/pcre_compile.c bot = 0; bot 1558 ext/pcre/pcrelib/pcre_compile.c while (bot < top) bot 1561 ext/pcre/pcrelib/pcre_compile.c i = (bot + top) >> 1; bot 1569 ext/pcre/pcrelib/pcre_compile.c if (r > 0) bot = i + 1; else top = i; bot 79 ext/pcre/pcrelib/pcre_get.c int top, bot; bot 113 ext/pcre/pcrelib/pcre_get.c bot = 0; bot 114 ext/pcre/pcrelib/pcre_get.c while (top > bot) bot 116 ext/pcre/pcrelib/pcre_get.c int mid = (top + bot) / 2; bot 121 ext/pcre/pcrelib/pcre_get.c if (c > 0) bot = mid + 1; else top = mid; bot 162 ext/pcre/pcrelib/pcre_get.c int top, bot; bot 197 ext/pcre/pcrelib/pcre_get.c bot = 0; bot 198 ext/pcre/pcrelib/pcre_get.c while (top > bot) bot 200 ext/pcre/pcrelib/pcre_get.c int mid = (top + bot) / 2; bot 232 ext/pcre/pcrelib/pcre_get.c if (c > 0) bot = mid + 1; else top = mid; bot 248 main/mergesort.c #define reverse(bot, top) { \ bot 253 main/mergesort.c tmp = *bot; *bot++ = *s; *s++ = tmp; \ bot 256 main/mergesort.c } while(bot < s); \