Lines Matching refs:Block_t
40 static Block_t* _vmextend(reg Vmalloc_t* vm, size_t size, Vmsearch_f searchf )
42 static Block_t* _vmextend(vm, size, searchf )
50 reg Block_t *bp, *tp, *np;
60 s = size + sizeof(Seg_t) + sizeof(Block_t) + sizeof(Head_t) + 2*ALIGN;
62 return NIL(Block_t*);
64 return NIL(Block_t*);
88 return NIL(Block_t*);
106 vd->wild = NIL(Block_t*);
114 seg->free = NIL(Block_t*);
139 seg->free = NIL(Block_t*);
178 vd->wild = NIL(Block_t*);
212 if(less > 0 && (ssize_t)size > less && (size-less) < sizeof(Block_t) )