Home
last modified time | relevance | path

Searched refs:bot (Results 1 – 21 of 21) sorted by relevance

/titanic_51/usr/src/lib/libast/common/hash/
H A Dhashview.c43 hashview(Hash_table_t* top, Hash_table_t* bot) in hashview() argument
51 bot = 0; in hashview()
52 else if (top == bot) in hashview()
53 bot = top->scope; in hashview()
54 else if (bot) in hashview()
57 bot = 0; in hashview()
64 if (p = (Hash_bucket_t*)hashlook(bot, b->name, HASH_LOOKUP, NiL)) in hashview()
69 top->scope = bot; in hashview()
70 bot->frozen++; in hashview()
73 else if (bot = top->scope) in hashview()
[all …]
/titanic_51/usr/src/contrib/ast/src/lib/libast/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) in hashview() argument
51 bot = 0; in hashview()
52 else if (top == bot) in hashview()
53 bot = top->scope; in hashview()
54 else if (bot) in hashview()
57 bot in hashview()
[all...]
/titanic_51/usr/src/cmd/look/
H A Dlook.c40 long top,bot,mid; in main() local
86 bot = 0; in main()
90 mid = (top+bot)/2; in main()
109 bot = mid; in main()
114 fseek(dfile,bot,0); in main()
/titanic_51/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) in getlist() argument
389 *bot = (*bot)->fts_link = root; in getlist()
391 *bot = *top = root; in getlist()
399 (*bot)->fts_link = 0; in getlist()
587 register FTSENT* bot; in toplist() local
597 top = bot = 0; in toplist()
660 if (bot) in toplist()
662 bot->fts_link = f; in toplist()
663 bot = f; in toplist()
[all …]
/titanic_51/usr/src/contrib/ast/src/lib/libast/misc/
H A Dfts.c50 FTSENT* bot; /* bottom element */ \
372 getlist(register FTSENT** top, register FTSENT** bot, register FTSENT* root) in getlist() argument
389 *bot = (*bot)->fts_link = root; in getlist()
391 *bot = *top = root; in getlist()
399 (*bot)->fts_link = 0; in getlist()
595 register FTSENT* bot; in toplist() local
605 top = bot = 0; in toplist()
673 if (bot) in toplist()
675 bot in toplist()
694 FTSENT* bot; order() local
[all...]
/titanic_51/usr/src/lib/libtecla/common/
H A Dpcache.c1226 int bot; /* The lowest index of the array not searched yet */ in CPL_MATCH_FN() local
1315 bot = 0; in CPL_MATCH_FN()
1317 while(top >= bot) { in CPL_MATCH_FN()
1318 int mid = (top + bot)/2; in CPL_MATCH_FN()
1323 bot = mid + 1; in CPL_MATCH_FN()
1325 top = bot = mid; in CPL_MATCH_FN()
1332 if(top == bot) { in CPL_MATCH_FN()
1333 while(--bot >= 0 && strncmp(node->files[bot]+1, prefix, prefix_len) == 0) in CPL_MATCH_FN()
1341 bot in CPL_MATCH_FN()
[all...]
H A Dkeytab.c412 int bot; /* The lowest index of the table not searched yet */ in _kt_locate_keybinding() local
418 bot = 0; in _kt_locate_keybinding()
420 while(top >= bot) { in _kt_locate_keybinding()
421 mid = (top + bot)/2; in _kt_locate_keybinding()
427 bot = mid + 1; in _kt_locate_keybinding()
435 * index where a match would be found, and bot is the index just above in _kt_locate_keybinding()
439 *last = bot; in _kt_locate_keybinding()
/titanic_51/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.agghist.d.out6 bot |@@@@@@@@@@ 20
25 bot |@@@@@@@@@@@@@@@@@@@ 20
/titanic_51/usr/src/cmd/checknr/
H A Dchecknr.c595 int top, bot; /* boundaries of bin search, inclusive */ in binsrch() local
598 bot = 0; in binsrch()
599 while (top >= bot) { in binsrch()
600 mid = (top+bot)/2; in binsrch()
608 bot = mid + 1; in binsrch()
612 slot = bot; /* place it would have gone */ in binsrch()
/titanic_51/usr/src/tools/cscope-fast/
H A Dmouse.c156 drawscrollbar(int top, int bot, int total) in drawscrollbar() argument
161 if (bot > top && total > 0) { in drawscrollbar()
163 p2 = 16 + (bot - 1) * 100 / total; in drawscrollbar()
H A Dmouse.h58 extern void drawscrollbar(int top, int bot, int total);
/titanic_51/usr/src/lib/libc/port/locale/
H A Dstrftime.c317 int bot; in _fmt() local
326 bot = ((yday + 11 - wday) % in _fmt()
332 top = bot - (len % DAYSPERWEEK); in _fmt()
341 if (yday >= bot) { in _fmt()
342 w = 1 + ((yday - bot) / in _fmt()
/titanic_51/usr/src/cmd/sgs/lex/common/
H A Dsub2.c925 int top, bot, startup, omin; in layout() local
937 bot = j; in layout()
944 for (j = bot; j <= top; j++) { in layout()
958 "bot,top %d, %d startup begins %d\n", in layout()
959 bot, top, startup); in layout()
966 for (j = bot; j <= top; j++) { in layout()
978 for (j = bot; j <= top; j++) { in layout()
994 for (j = bot; j <= top; j++) { in layout()
1005 for (j = bot; j <= top; j++) { in layout()
/titanic_51/usr/src/boot/lib/libstand/
H A Dbootp.c62 static time_t bot; variable
137 if (!bot) in bootp()
138 bot = getsecs(); in bootp()
272 bp->bp_secs = htons((u_short)(getsecs() - bot)); in bootpsend()
/titanic_51/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;
/titanic_51/usr/src/cmd/sgs/libelf/common/
H A Dxlate.m4637 /* VERDEF */ { 1, 1}, /* because bot VERDEF & VERNEED have varying */
/titanic_51/usr/src/pkg/manifests/
H A Dsystem-data-terminfo.mf1407 file path=usr/share/lib/terminfo/v/vt100-s-bot
2566 hardlink path=usr/share/lib/terminfo/v/vt100-bot-s target=../v/vt100-s-bot
/titanic_51/usr/src/grub/grub-0.97/docs/
H A Dtexinfo.tex183 par-a-digms rath-er rec-tan-gu-lar ro-bot-ics se-vere-ly set-up spa-ces
/titanic_51/usr/src/cmd/terminfo/
H A Dtermcap.src2063 vt100-s-bot|vt100-bot-s|vt100 for use with bottom sysline:\
H A Dterminfo.src2326 vt100-s-bot|vt100-bot-s|vt100 for use with bottom sysline,
/titanic_51/usr/src/data/hwdata/
H A Dusb.ids8 # body of your email (a bot will attempt to deal with it).