Searched refs:BIT1 (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmallint.h121 #define BIT1 (02) /* ...010 */ macro
124 #define ISBIT1(w) ((w) & BIT1) /* Is the preceding free? */
126 #define SETBIT1(w) ((w) |= BIT1) /* The preceding is free */
128 #define CLRBIT1(w) ((w) &= ~BIT1) /* Clean bit1 */
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmallint.h151 #define BIT1 (02) /* ...010 */ macro
154 #define ISBIT1(w) ((w) & BIT1) /* Is the preceding free? */
156 #define SETBIT1(w) ((w) |= BIT1) /* The preceding is free */
158 #define CLRBIT1(w) ((w) &= ~BIT1) /* Clean bit1 */
H A Dmalloc.c58 * BIT1: if the block is busy, this bit is 1 if the
217 o_bit1 = SIZE(sp) & BIT1;

Completed in 77 milliseconds