Home
last modified time | relevance | path

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

/titanic_44/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 */
/titanic_44/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.c217 o_bit1 = SIZE(sp) & BIT1; in _malloc_unlocked()