HomeSort by: relevance | last modified time | path
    Searched refs:bot (Results 1 - 25 of 55) sorted by relevancy

1 2 3

  /src/usr.bin/sort/
msort.c 308 int mid, top = ttop, bot = 0, cmpv = 1; local
310 for (mid = top / 2; bot + 1 != top; mid = (bot + top) / 2) {
333 bot = mid;
340 if (bot != 0) {
341 memmove(flist, flist + 1, bot * sizeof(MFILE *));
342 flist[bot] = rec;
349 if (bot == 0 && cmpv != 0) {
356 bot = -1;
358 bot++
    [all...]
  /src/external/gpl2/groff/dist/src/preproc/eqn/
delim.cpp 40 const char *bot; member in struct:delimiter
205 const char *bot)
226 if (bot) {
229 bot);
236 if (bot)
287 if (bot)
291 bot);
340 build_extensible(d->ext, d->top, d->mid, d->bot);
box.h 282 const char *mid = 0, const char *bot = 0);
  /src/usr.bin/checknr/
checknr.c 626 int top, bot; /* boundaries of bin search, inclusive */ local
629 bot = 0;
630 while (top >= bot) {
631 mid = (top+bot)/2;
639 bot = mid + 1;
643 slot = bot; /* place it would have gone */
  /src/external/ibm-public/postfix/dist/src/tls/
tls_dane.c 357 static VSTRING *bot; local
361 if (bot == 0)
362 bot = vstring_alloc(2 * MAX_TAIL_BYTES);
366 hex_encode(bot, (char *) data + dlen - MAX_TAIL_BYTES, MAX_TAIL_BYTES);
375 dlen > MAX_DUMP_BYTES ? STR(bot) : "");
385 static VSTRING *bot; local
389 if (bot == 0)
390 bot = vstring_alloc(2 * MAX_TAIL_BYTES);
394 hex_encode(bot, (char *) data + dlen - MAX_TAIL_BYTES, MAX_TAIL_BYTES);
403 dlen > MAX_DUMP_BYTES ? STR(bot) : "")
994 static VSTRING *bot; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
block.c 128 int bot, top, half; local
142 bot = STATIC_BLOCK;
145 while (top - bot > 1)
147 half = (top - bot + 1) >> 1;
148 b = bl->block (bot + half);
150 bot += half;
152 top = bot + half;
157 while (bot >= STATIC_BLOCK)
159 b = bl->block (bot);
164 bot--
    [all...]
target-float.c 1265 gdb_mpfr top (to), bot (to);
1275 from + fmt->totalsize / FLOATFORMAT_CHAR_BIT / 2, bot);
1276 mpfr_add (to.val, top.val, bot.val, MPFR_RNDN);
1364 gdb_mpfr top (from), bot (from);
1370 mpfr_set_zero (bot.val, 0);
1372 mpfr_sub (bot.val, from.val, top.val, MPFR_RNDN);
1375 to_target (fmt->split_half, bot,
  /src/external/gpl3/gdb/dist/gdb/
block.c 128 int bot, top, half; local
142 bot = STATIC_BLOCK;
145 while (top - bot > 1)
147 half = (top - bot + 1) >> 1;
148 b = bl->block (bot + half);
150 bot += half;
152 top = bot + half;
157 while (bot >= STATIC_BLOCK)
159 b = bl->block (bot);
164 bot--
    [all...]
target-float.c 1265 gdb_mpfr top (to), bot (to);
1275 from + fmt->totalsize / FLOATFORMAT_CHAR_BIT / 2, bot);
1276 mpfr_add (to.val, top.val, bot.val, MPFR_RNDN);
1364 gdb_mpfr top (from), bot (from);
1370 mpfr_set_zero (bot.val, 0);
1372 mpfr_sub (bot.val, from.val, top.val, MPFR_RNDN);
1375 to_target (fmt->split_half, bot,
  /src/lib/libcurses/
refresh.c 1559 int n, target, cur_period, bot, top, sc_region;
1582 for (bot = __virtscr->maxy - 1; bot >= 0; bot--) {
1583 if (__virtscr->alines[bot]->flags & __ISDIRTY &&
1584 (__virtscr->alines[bot]->hash != curscr->alines[bot]->hash ||
1585 !lineeq(__virtscr->alines[bot]->line,
1586 curscr->alines[bot]->line,
1590 __virtscr->alines[bot]->flags &= ~__ISDIRTY
    [all...]
  /src/sys/netatalk/
at_control.c 698 * Add a route for a range of networks from bot to top - 1.
711 aa_dorangeroute(struct ifaddr *ifa, u_int bot, u_int top, int cmd)
721 if (bot > top)
731 while (bot <= top) {
733 while (((bot & ~mask1) >= bot)
734 && ((bot | mask1) <= top)) {
740 addr.s_net = htons(bot);
750 bot = (bot | mask1) + 1
    [all...]
  /src/sys/lib/libsa/
bootp.c 66 static satime_t bot; variable
139 if (!bot)
140 bot = getsecs();
292 bp->bp_secs = htons((u_short)(getsecs() - bot));
  /src/lib/libc/stdlib/
merge.c 269 #define reverse(bot, top) { \
274 tmp = *bot; *bot++ = *s; *s++ = tmp; \
277 } while(bot < s); \
  /src/external/lgpl3/gmp/dist/mpn/powerpc64/mode64/
aorsmul_1.asm 95 b L(bot)
117 b L(bot)
157 b L(bot)
199 L(bot):
  /src/external/mit/isl/dist/include/isl/
mat.h 101 __isl_take isl_mat *bot);
103 __isl_take isl_vec *bot);
  /src/lib/libc/time/
strftime.c 524 int bot; local
534 bot = ((yday + 11 - wday) %
540 top = bot -
550 if (yday >= bot) {
551 w = 1 + ((yday - bot) /
  /src/external/mit/isl/dist/
isl_mat.c 1766 __isl_take isl_mat *bot)
1770 if (!top || !bot)
1773 isl_assert(top->ctx, top->n_col == bot->n_col, goto error);
1776 return bot;
1778 if (bot->n_row == 0) {
1779 isl_mat_free(bot);
1783 mat = isl_mat_alloc(top->ctx, top->n_row + bot->n_row, top->n_col);
1788 isl_mat_sub_copy(mat->ctx, mat->row + top->n_row, bot->row, bot->n_row,
1791 isl_mat_free(bot);
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/
cvs.sh 200 cat `egrep -v "configure.in.bot" < configure.files` > configure.in.new
280 botfiles=`cat configure.files | egrep "configure.in.bot"`
282 cat $admindir/configure.in.bot.end >> configure.in
298 list=`find . -name "configure.in.in" -o -name "configure.in.bot" | \
304 test -f configure.in.bot && echo configure.in.bot >> configure.files
  /src/games/hack/
hack.pri.c 315 bot();
702 /* 100 suffices for bot(); no relation with COLNO */
714 bot(void) function
extern.h 342 void bot(void);
hack.eat.c 420 bot();
hack.main.c 441 bot();
  /src/external/bsd/openldap/dist/servers/slapd/
ad.c 1277 int top = 0, bot = option_count; local
1278 while ( top < bot ) {
1279 int mid = (top + bot) / 2;
1291 bot = mid;
  /src/external/gpl3/gcc/dist/gcc/
asan.cc 681 bot = new_sp;
682 __asan_allocas_unpoison (top, bot);
685 In general, we can't use new_sp as bot parameter because on some
2224 /* Emit __asan_allocas_unpoison (top, bot) call. The BASE parameter corresponds
2225 to BOT argument, for TOP virtual_stack_dynamic_rtx is used. NEW_SEQUENCE
2229 asan_emit_allocas_unpoison (rtx top, rtx bot, rtx_insn *before)
2237 bot = convert_memory_address (ptr_mode, bot);
2239 top, ptr_mode, bot, ptr_mode);
4586 poly_int64 bot = 0, top = 0
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
asan.cc 641 bot = new_sp;
642 __asan_allocas_unpoison (top, bot);
645 In general, we can't use new_sp as bot parameter because on some
2182 /* Emit __asan_allocas_unpoison (top, bot) call. The BASE parameter corresponds
2183 to BOT argument, for TOP virtual_stack_dynamic_rtx is used. NEW_SEQUENCE
2187 asan_emit_allocas_unpoison (rtx top, rtx bot, rtx_insn *before)
2195 bot = convert_memory_address (ptr_mode, bot);
2197 top, ptr_mode, bot, ptr_mode);
4521 poly_int64 bot = 0, top = 0
    [all...]

Completed in 57 milliseconds

1 2 3