Searched defs:bot (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/hash/
H A Dhashview.c35 * bot==0 pop top scope
36 * bot==top query
37 * bot!=0 push top on bot
43 hashview(Hash_table_t* top, Hash_table_t* bot) argument
51 bot = 0;
52 else if (top == bot)
53 bot = top->scope;
54 else if (bot)
57 bot
[all...]
/illumos-gate/usr/src/cmd/look/
H A Dlook.c40 long top,bot,mid; local
86 bot = 0;
90 mid = (top+bot)/2;
109 bot = mid;
114 fseek(dfile,bot,0);
/illumos-gate/usr/src/tools/cscope-fast/
H A Dmouse.c156 drawscrollbar(int top, int bot, int total) argument
161 if (bot > top && total > 0) {
163 p2 = 16 + (bot - 1) * 100 / total;
/illumos-gate/usr/src/lib/libtecla/common/
H A Dkeytab.c412 int bot; /* The lowest index of the table not searched yet */ local
418 bot = 0;
420 while(top >= bot) {
421 mid = (top + bot)/2;
427 bot = mid + 1;
435 * index where a match would be found, and bot is the index just above
439 *last = bot;
H A Dpcache.c1226 int bot; /* The lowest index of the array not searched yet */ local
1315 bot = 0;
1317 while(top >= bot) {
1318 int mid = (top + bot)/2;
1323 bot = mid + 1;
1325 top = bot = mid;
1332 if(top == bot) {
1333 while(--bot >= 0 && strncmp(node->files[bot]+1, prefix, prefix_len) == 0)
1341 bot
[all...]
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrftime.c317 int bot; local
326 bot = ((yday + 11 - wday) %
332 top = bot - (len % DAYSPERWEEK);
341 if (yday >= bot) {
342 w = 1 + ((yday - bot) /
/illumos-gate/usr/src/cmd/checknr/
H A Dchecknr.c595 int top, bot; /* boundaries of bin search, inclusive */ local
598 bot = 0;
599 while (top >= bot) {
600 mid = (top+bot)/2;
608 bot = mid + 1;
612 slot = bot; /* place it would have gone */
/illumos-gate/usr/src/boot/lib/libstand/
H A Dbootp.c66 static time_t bot; variable
114 if (!bot)
115 bot = getsecs();
280 bp->bp_secs = htons((u_short)(getsecs() - bot));
/illumos-gate/usr/src/cmd/sgs/lex/common/
H A Dsub2.c925 int top, bot, startup, omin; local
937 bot = j;
944 for (j = bot; j <= top; j++) {
958 "bot,top %d, %d startup begins %d\n",
959 bot, top, startup);
966 for (j = bot; j <= top; j++) {
978 for (j = bot; j <= top; j++) {
994 for (j = bot; j <= top; j++) {
1005 for (j = bot; j <= top; j++) {
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dfts.c50 FTSENT* bot; /* bottom element */ \
372 getlist(register FTSENT** top, register FTSENT** bot, register FTSENT* root) argument
389 *bot = (*bot)->fts_link = root;
391 *bot = *top = root;
399 (*bot)->fts_link = 0;
587 register FTSENT* bot; local
597 top = bot = 0;
660 if (bot)
662 bot
681 FTSENT* bot; local
[all...]
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_cmdsub.c635 off64_t top, bot; /* length of tag file */ local
690 bot = 0L;
691 while (top >= bot) {
697 mid = (top + bot) / 2;
723 if ( mid == bot && mid == top ) {
734 bot = mid + 1;

Completed in 61 milliseconds