| /netbsd-src/usr.bin/sort/ |
| H A D | msort.c | 308 int mid, top = ttop, bot = 0, cmpv = 1; in insert() local 310 for (mid = top / 2; bot + 1 != top; mid = (bot + top) / 2) { in insert() 333 bot = mid; in insert() 340 if (bot != 0) { in insert() 341 memmove(flist, flist + 1, bot * sizeof(MFILE *)); in insert() 342 flist[bot] = rec; in insert() 349 if (bot == 0 && cmpv != 0) { in insert() 356 bot = -1; in insert() 358 bot++; in insert() 359 memmove(flist + bot + 1, flist + bot, (ttop - bot) * sizeof(MFILE *)); in insert() [all …]
|
| /netbsd-src/external/gpl2/groff/dist/src/preproc/eqn/ |
| H A D | delim.cpp | 40 const char *bot; member 205 const char *bot) in build_extensible() argument 226 if (bot) { in build_extensible() 229 bot); in build_extensible() 236 if (bot) in build_extensible() 287 if (bot) in build_extensible() 291 bot); in build_extensible() 340 build_extensible(d->ext, d->top, d->mid, d->bot); in define_extensible_string()
|
| H A D | box.h | 282 const char *mid = 0, const char *bot = 0);
|
| /netbsd-src/lib/libcurses/ |
| H A D | refresh.c | 1557 int n, target, cur_period, bot, top, sc_region; in quickch() 1580 for (bot = __virtscr->maxy - 1; bot >= 0; bot--) { in quickch() 1581 if (__virtscr->alines[bot]->flags & __ISDIRTY && in quickch() 1582 (__virtscr->alines[bot]->hash != curscr->alines[bot]->hash || in quickch() 1583 !lineeq(__virtscr->alines[bot]->line, in quickch() 1584 curscr->alines[bot]->line, in quickch() 1588 __virtscr->alines[bot] in quickch() 1544 int n, target, cur_period, bot, top, sc_region; quickch() local 1846 scrolln(int starts,int startw,int curs,int bot,int top) scrolln() argument [all...] |
| /netbsd-src/external/ibm-public/postfix/dist/src/tls/ |
| H A D | tls_dane.c | 353 static VSTRING *bot; in tlsa_info() local 357 if (bot == 0) in tlsa_info() 358 bot = vstring_alloc(2 * MAX_TAIL_BYTES); in tlsa_info() 362 hex_encode(bot, (char *) data + dlen - MAX_TAIL_BYTES, MAX_TAIL_BYTES); in tlsa_info() 371 dlen > MAX_DUMP_BYTES ? STR(bot) : ""); in tlsa_info() 381 static VSTRING *bot; in tlsa_carp() local 385 if (bot == 0) in tlsa_carp() 386 bot = vstring_alloc(2 * MAX_TAIL_BYTES); in tlsa_carp() 390 hex_encode(bot, (char *) data + dlen - MAX_TAIL_BYTES, MAX_TAIL_BYTES); in tlsa_carp() 399 dlen > MAX_DUMP_BYTES ? STR(bot) : ""); in tlsa_carp() [all …]
|
| /netbsd-src/usr.bin/checknr/ |
| H A D | checknr.c | 626 int top, bot; /* boundaries of bin search, inclusive */ in binsrch() local 629 bot = 0; in binsrch() 630 while (top >= bot) { in binsrch() 631 mid = (top+bot)/2; in binsrch() 639 bot = mid + 1; in binsrch() 643 slot = bot; /* place it would have gone */ in binsrch()
|
| /netbsd-src/sys/netatalk/ |
| H A D | at_control.c | 711 aa_dorangeroute(struct ifaddr *ifa, u_int bot, u_int top, int cmd) in aa_dorangeroute() argument 721 if (bot > top) in aa_dorangeroute() 731 while (bot <= top) { in aa_dorangeroute() 733 while (((bot & ~mask1) >= bot) in aa_dorangeroute() 734 && ((bot | mask1) <= top)) { in aa_dorangeroute() 740 addr.s_net = htons(bot); in aa_dorangeroute() 750 bot = (bot | mask1) + 1; in aa_dorangeroute()
|
| /netbsd-src/sys/lib/libsa/ |
| H A D | bootp.c | 66 static satime_t bot; variable 139 if (!bot) in bootp() 140 bot = getsecs(); in bootp() 292 bp->bp_secs = htons((u_short)(getsecs() - bot)); in bootpsend()
|
| /netbsd-src/lib/libc/stdlib/ |
| H A D | merge.c | 263 #define reverse(bot, top) { \ argument 268 tmp = *bot; *bot++ = *s; *s++ = tmp; \ 271 } while(bot < s); \
|
| /netbsd-src/external/mit/isl/dist/ |
| H A D | Makefile.am | 381 cpp/cpp.h.top cpp/cpp.h.bot 386 cat $(srcdir)/cpp/cpp.h.bot) \ 390 cpp/cpp-checked.h.top cpp/cpp-checked.h.bot 396 cat $(srcdir)/cpp/cpp-checked.h.bot) \ 403 cpp/cpp-checked-conversion.h.bot 409 cat $(srcdir)/cpp/cpp-checked-conversion.h.bot) \ 413 libdep.a cpp/typed_cpp.h.top cpp/typed_cpp.h.bot 419 cat $(srcdir)/cpp/typed_cpp.h.bot) \
|
| H A D | isl_mat.c | 1766 __isl_take isl_mat *bot) in isl_mat_concat() argument 1770 if (!top || !bot) in isl_mat_concat() 1773 isl_assert(top->ctx, top->n_col == bot->n_col, goto error); in isl_mat_concat() 1776 return bot; in isl_mat_concat() 1778 if (bot->n_row == 0) { in isl_mat_concat() 1779 isl_mat_free(bot); in isl_mat_concat() 1783 mat = isl_mat_alloc(top->ctx, top->n_row + bot->n_row, top->n_col); in isl_mat_concat() 1788 isl_mat_sub_copy(mat->ctx, mat->row + top->n_row, bot->row, bot->n_row, in isl_mat_concat() 1791 isl_mat_free(bot); in isl_mat_concat() 1795 isl_mat_free(bot); in isl_mat_concat() [all …]
|
| /netbsd-src/lib/libc/time/ |
| H A D | strftime.c | 524 int bot; in _fmt() 534 bot = ((yday + 11 - wday) % in _fmt() 540 top = bot - in _fmt() 550 if (yday >= bot) { in _fmt() 551 w = 1 + ((yday - bot) / in _fmt() 465 int bot; _fmt() local
|
| /netbsd-src/external/mit/isl/dist/include/isl/ |
| H A D | mat.h | 101 __isl_take isl_mat *bot); 103 __isl_take isl_vec *bot);
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/ |
| H A D | cvs.sh | 282 cat $admindir/configure.in.bot.end >> configure.in 304 test -f configure.in.bot && echo configure.in.bot >> configure.files
|
| /netbsd-src/external/lgpl3/gmp/dist/mpn/powerpc64/mode64/ |
| H A D | aorsmul_1.asm | 95 b L(bot) 157 b L(bot)
|
| /netbsd-src/external/gpl2/groff/dist/tmac/ |
| H A D | hyphenex.us | 98 bot-u-lism 334 lo-bot-omy 335 lo-bot-om-ize 605 ro-bot 607 ro-bot-ics 718 tele-ro-bot-ics
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | aspeed-bmc-ibm-everest.dts | 530 label = "cablecard-c01-cxp-bot"; 596 label = "cablecard-c02-cxp-bot"; 662 label = "cablecard-c03-cxp-bot"; 826 label = "cablecard-c04-cxp-bot"; 892 label = "cablecard-c05-cxp-bot"; 958 label = "cablecard-c06-cxp-bot"; 1024 label = "cablecard-c07-cxp-bot"; 1103 label = "cablecard-c08-cxp-bot"; 1169 label = "cablecard-c09-cxp-bot"; 1235 label = "cablecard-c10-cxp-bot"; [all …]
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/ |
| H A D | ad.c | 1277 int top = 0, bot = option_count; in ad_find_option_definition() local 1278 while ( top < bot ) { in ad_find_option_definition() 1279 int mid = (top + bot) / 2; in ad_find_option_definition() 1291 bot = mid; in ad_find_option_definition()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | asan.cc | 2187 asan_emit_allocas_unpoison (rtx top, rtx bot, rtx_insn *before) in asan_emit_allocas_unpoison() argument 2195 bot = convert_memory_address (ptr_mode, bot); in asan_emit_allocas_unpoison() 2197 top, ptr_mode, bot, ptr_mode); in asan_emit_allocas_unpoison() 4521 poly_int64 bot = 0, top = 0; in hwasan_emit_prologue() local 4530 bot = farthest; in hwasan_emit_prologue() 4538 bot = nearest; in hwasan_emit_prologue() 4540 poly_int64 size = (top - bot); in hwasan_emit_prologue() 4545 gcc_assert (multiple_p (bot, HWASAN_TAG_GRANULE_SIZE)); in hwasan_emit_prologue() 4556 bot)); in hwasan_emit_prologue()
|
| /netbsd-src/games/hack/ |
| H A D | hack.pri.c | 315 bot(); in docrt() 714 bot(void) in bot() function
|
| H A D | extern.h | 342 void bot(void);
|
| H A D | hack.main.c | 441 bot(); in main()
|
| H A D | hack.eat.c | 420 bot(); in newuhs()
|
| /netbsd-src/usr.bin/vmstat/ |
| H A D | vmstat.c | 871 pct(u_long top, u_long bot) in pct() argument 875 if (bot == 0) in pct() 877 ans = (long)((quad_t)top * 100 / bot); in pct() 881 #define PCT(top, bot) (int)pct((u_long)(top), (u_long)(bot)) argument
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/utils/ci/ |
| H A D | Dockerfile | 21 # build bot, see the `run-buildbot-container` script located in this directory.
|