HomeSort by relevance Sort by last modified time
    Searched defs:TREE (Results 1 - 2 of 2) sorted by null

  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
mallint.h 63 #define MINSIZE (sizeof (TREE) - sizeof (WORD))
83 } TREE;
110 /* structure of a node in the free tree */
118 } TREE;
123 /* free tree pointers */
131 /* forward and backward links for lists in the tree */
137 /* set/test indicator if a block is in the tree or in a list */
138 #define SETNOTREE(b) (LEFT(b) = (TREE *)(-1))
139 #define ISNOTREE(b) (LEFT(b) == (TREE *)(-1))
143 #define BLOCK(d) ((TREE *)(((uintptr_t)(d)) - WORDSIZE)
    [all...]
  /onnv/onnv-gate/usr/src/lib/watchmalloc/common/
mallint.h 62 #define MINSIZE (sizeof (TREE) - sizeof (WORD))
81 /* structure of a node in the free tree */
89 } TREE;
95 /* free tree pointers */
103 /* forward and backward links for lists in the tree */
107 /* set/test indicator if a block is in the tree or in a list */
108 #define SETNOTREE(b) (LEFT(b) = (TREE *)(-1))
109 #define ISNOTREE(b) (LEFT(b) == (TREE *)(-1))
113 #define BLOCK(d) ((TREE *)(((char *)(d)) - WORDSIZE))
116 #define NEXT(b) ((TREE *)(((char *)(b)) + RSIZE(b) + WORDSIZE)
    [all...]

Completed in 1440 milliseconds