Lines Matching defs:b
92 #define SIZE(b) (((b)->t_s).w_i)
93 #define RSIZE(b) (((b)->t_s).w_i & ~BITS01)
96 #define PARENT(b) (((b)->t_p).w_p[0])
97 #define LEFT(b) (((b)->t_l).w_p[0])
98 #define RIGHT(b) (((b)->t_r).w_p[0])
101 #define AFTER(b) (((b)->t_p).w_p[0])
104 #define LINKFOR(b) (((b)->t_n).w_p[0])
105 #define LINKBAK(b) (((b)->t_p).w_p[0])
108 #define SETNOTREE(b) (LEFT(b) = (TREE *)(-1))
109 #define ISNOTREE(b) (LEFT(b) == (TREE *)(-1))
112 #define DATA(b) (((char *)(b)) + WORDSIZE)
114 #define SELFP(b) (&(NEXT(b)->t_s.w_p[1]))
115 #define LAST(b) ((b)->t_s.w_p[1])
116 #define NEXT(b) ((TREE *)(((char *)(b)) + RSIZE(b) + WORDSIZE))
117 #define BOTTOM(b) ((DATA(b) + RSIZE(b) + WORDSIZE) == Baddr)