Searched defs:oversize (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libmtmalloc/common/
H A Dmtmalloc_impl.h54 typedef struct oversize { struct
55 struct oversize *next_bysize;
56 struct oversize *prev_bysize;
57 struct oversize *next_byaddr;
58 struct oversize *prev_byaddr;
59 struct oversize *hash_next;
97 * Oversize bit definitions: 3 bits to represent the oversize for
99 * If the head fragment is oversize, the first bit is on.
100 * If the data itself is oversize, the second bit is on.
101 * If the tail fragment is oversize, the
[all...]
H A Dmtmalloc.c101 * For requests greater than 2^^16 (oversize allocations), there are two pieces
109 * The oversize list is kept as defragmented as possible by coalescing
138 static void *oversize(size_t);
149 * oversize hash table stuff
273 * Add big to the oversize hash table at the head of the relevant bucket.
316 * oversize
318 void *ret_ptr = oversize(bytes);
486 * recall that a oversize allocation is always > a page
643 * to the oversize freelist when it's > MAX_CACHED.
689 * return it back to oversize freelis
1705 oversize(size_t size) function
[all...]

Completed in 18 milliseconds