Searched defs:BITS (Results 1 - 3 of 3) sorted by relevance

/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/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/lib/libast/common/vmalloc/
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...]

Completed in 25 milliseconds