Searched refs:MemNode (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/boot/lib/libstand/
H A Dzalloc_mem.h38 typedef struct MemNode { struct
39 struct MemNode *mr_Next;
41 } MemNode; typedef in typeref:struct:MemNode
46 MemNode *mp_First;
H A Dzalloc.c74 * Objects in the pool must be aligned to at least the size of struct MemNode.
78 typedef char assert_align[(sizeof(struct MemNode) <= MALLOCALIGN) ? 1 : -1];
107 MemNode **pmn;
108 MemNode *mn;
125 mn = (MemNode *)((char *)mn + bytes);
126 mn->mr_Next = ((MemNode *)ptr)->mr_Next;
127 mn->mr_Bytes = ((MemNode *)ptr)->mr_Bytes - bytes;
173 MemNode **pmn;
174 MemNode *mn;
199 ((MemNode *)pt
[all...]

Completed in 43 milliseconds