Searched refs:TREE (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmemalign.c37 #define _nextblk(p, size) ((TREE *)((uintptr_t)(p) + (size)))
64 TREE *p; /* Ptr returned from malloc() */
65 TREE *blk; /* For addressing fragment blocks */
67 TREE *alignedp; /* Ptr to properly aligned boundary */
68 TREE *aligned_blk; /* The block to be returned */
116 p = (TREE *)malloc(reqsize);
117 if (p == (TREE *)NULL) {
136 alignedp = (TREE *)x;
H A Dmallint.h63 #define MINSIZE (sizeof (TREE) - sizeof (WORD))
83 } TREE; typedef in typeref:struct:_t_
118 } TREE; typedef in typeref:struct:_t_
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))
144 #define SELFP(b) ((TREE **)(((uintptr_t)(b)) + SIZE(b)))
145 #define LAST(b) (*((TREE **)(((uintptr_t)(b)) - WORDSIZE)))
146 #define NEXT(b) ((TREE *)(((uintptr_t)(b)) + SIZE(b) + WORDSIZE))
H A Dmalloc.c81 static TREE *Root, /* root of the free tree */
88 static void t_delete(TREE *);
89 static void t_splay(TREE *);
118 static TREE *List[MINSIZE/WORDSIZE-1]; /* lists of small blocks */
123 TREE *tp;
135 TREE *np;
182 TREE *tp, *sp;
304 TREE *tp, *np;
490 TREE *tp, *sp, *np;
600 static TREE *
[all...]
/illumos-gate/usr/src/tools/scripts/
H A Dflg.flp.sh253 TREE=$SUBTREE
254 while [[ $TREE != $CODEMGR_WS ]]; do
255 [[ -f $TREE/req.flg ]] && exec_file $TREE/req.flg
256 TREE=`dirname $TREE`
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmallint.h62 #define MINSIZE (sizeof (TREE) - sizeof (WORD))
89 } TREE; typedef in typeref:struct:_t_
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))
H A Dmalloc.c65 static TREE *Root; /* root of the free tree */
66 static TREE *Bottom; /* the last free chunk in the arena */
69 static void t_delete(TREE *);
70 static void t_splay(TREE *);
74 static TREE *morecore(size_t);
76 static void protect(TREE *);
77 static void unprotect(TREE *);
92 copy_pattern(int pat, TREE *tp)
106 static TREE *List[MINSIZE/WORDSIZE-1];
107 static TREE *Las
[all...]

Completed in 49 milliseconds