Searched refs:bt (Results 1 - 7 of 7) sorted by relevance
/ast/src/lib/libvcodex/ |
H A D | vcodex.h | 372 /* The below bit I/O macro functions use (bt,nb) for bit accumulation. These 377 ** usable as (bt,nb). In this way, applications that perform bits ops in function 380 #define vciosetb(io, bt, nb, tp) /* (tp) is only for symmetry with vcioendb */ \ 381 do { (bt) = 0; (nb) = 0; \ 384 #define vciofilb(io, bt, nb, mb) /* getting bits from stream into (bt) */ \ 386 { (nb) += 8; (bt) |= (*(io)->next++ << (VC_BITSIZE - (nb))); } \ 389 #define vciodelb(io, bt, nb, nd) /* consume bits already read */ \ 390 do { (bt) <<= (nd); (nb) -= (nd); \ 393 #define vcioflsb(io, bt, n [all...] |
/ast/src/lib/libbz/ |
H A D | compress.c | 245 Int32 v, t, i, j, gs, ge, totc, bt, bc, iter; local 373 bc = 999999999; bt = -1; 375 if (cost[t] < bc) { bc = cost[t]; bt = t; }; 377 fave[bt]++; 378 s->selector[nSelectors] = bt; 385 s->rfreq[bt][ s->szptr[i] ]++;
|
/ast/src/cmd/pax/ |
H A D | tar.sh | 43 single-character function letters \(\bc\b, \br\b, \bt\b, \bu\b, or
|
/ast/src/cmd/mailx/ |
H A D | imap.c | 713 register Imapblock_t* bt; local 790 bt = 0; 797 if (bt) 798 bt->next = bp; 801 bt = bp; 808 bt = bt->next = bp; 816 if (bt) 822 bt->next = bp;
|
/ast/src/lib/libvcodex/Vchuff/ |
H A D | vchuffgroup.c | 445 Vcbit_t b, *bt, bits[GRP_NTBL][VCH_SIZE]; local 527 bt = bits[part[i]]; 530 vcioaddb(&io, b, n, bt[*dt], sz[*dt]);
|
/ast/src/lib/libast/regex/ |
H A D | regcomp.c | 1039 int bt; local 1097 bt = COLL_range_uc; 1099 bt = COLL_range_lc; 1101 bt = COLL_range; 1156 ce->typ = bt == et ? bt : COLL_range;
|
/ast/src/cmd/ksh93/sh/ |
H A D | xec.c | 2586 clock_t bt; local 2612 bt = times(&before); 2624 bt = 0; 2635 at = times(&after) - bt;
|
Completed in 36 milliseconds