Searched refs:BITS (Results 1 - 11 of 11) sorted by relevance

/osnet-11/usr/src/lib/libcmd/common/
H A Dstty.c101 #define BITS 2 macro
308 { "cr0", BITS, O_FLAG, IG|SS, CRDLY, CR0 },
309 { "cr1", BITS, O_FLAG, US, CRDLY, CR1 },
310 { "cr2", BITS, O_FLAG, US, CRDLY, CR2 },
311 { "cr3", BITS, O_FLAG, US, CRDLY, CR3 },
314 { "nl0", BITS, O_FLAG, IG|US, NLDLY, NL0 },
315 { "nl1", BITS, O_FLAG, US, NLDLY, NL1 },
320 { "tab0", BITS, O_FLAG, IG|SS, TABDLY, TAB0 },
323 { "tab1", BITS, O_FLAG, US, TABDLY, TAB1 },
326 { "tab2", BITS, O_FLA
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dutf8_heavy.pl217 $bits = $subobj->{BITS} if $bits < $subobj->{BITS};
222 print STDERR "CLASS = $class, TYPE => $type, BITS => $bits, NONE => $none\nEXTRAS =>\n$extras\nLIST =>\n$list\n" if DEBUG;
226 BITS => $bits,
247 my $bits = $self->{BITS};
322 my $otherbits = $self->{$name}->{BITS};
/osnet-11/usr/src/lib/libcpc/i386/
H A Dconf_pentium.c495 #define BITS(v, u, l) \ macro
530 if ((family = BITS(eax, 11, 8)) == 0xf)
531 family = BITS(eax, 27, 20);
532 if ((model = BITS(eax, 7, 4)) == 0xf)
533 model = BITS(eax, 19, 16);
548 ver = BITS(edx, 23, 23) ? /* mmx check */
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmbest.c155 if(SIZE(node) & BITS)
199 { nextb = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
437 s = SIZE(fp); /**/ASSERT(!(s&BITS));
439 size = (size&~BITS) + s + sizeof(Head_t);
441 else size &= ~BITS;
454 { /**/ASSERT((s&BITS) == 0);
683 /**/ ASSERT((ALIGN%(BITS+1)) == 0 );
703 SIZE(np) = ((s&~BITS) - (size+sizeof(Head_t)))|JUNK|BUSY;
705 SIZE(tp) |= s&BITS;
758 { SIZE(np) &= ~BITS;
[all...]
H A Dvmstat.c85 { s = SIZE(b)&~BITS;
106 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
H A Dvmhdr.h182 /* Blocks are allocated such that their sizes are 0%(BITS+1)
188 #define BITS (07) /* (BUSY|PFREE|JUNK) */ macro
189 #define ALIGNB (8) /* size must be a multiple of BITS+1 */
191 #define ISBITS(w) ((w) & BITS)
192 #define CLRBITS(w) ((w) &= ~BITS)
193 #define CPYBITS(w,f) ((w) |= ((f)&BITS) )
241 ** It should also be a multiple of ALIGNB==(BITS+1) so the size field
242 ** of Block_t will always be 0%(BITS+1) as noted above.
431 #define PFDATA(d) ((Head_t*)((Vmuchar_t*)(d)+(SIZE(BLOCK(d))&~BITS)-sizeof(Head_t)) )
455 #define DBBSIZE(d) (SIZE(DBBLOCK(d)) & ~BITS)
[all...]
H A Dvmtrace.c275 else s = SIZE(b)&~BITS;
279 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
H A Dvmpool.c83 (s = (SIZE(tp) & ~BITS) + sizeof(Head_t)) >= size )
89 { s = (SIZE(tp) & ~BITS) + sizeof(Head_t);
320 if(seg->size == (s = SIZE(fp)&~BITS))
H A Dvmprivate.c124 { /**/ ASSERT((SIZE(bp)&~BITS) == 0);
H A Dvmdebug.c320 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
365 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
655 next: b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS));
H A Dvmlast.c375 if(seg->size == (s = SIZE(fp)&~BITS))

Completed in 90 milliseconds