Home | History | Annotate | Download | only in dist

Lines Matching refs:block

3 /* Find the starting address of a malloc'd block, from anywhere inside it.
36 __malloc_size_t block = BLOCK (ptr);
37 int type = _heapinfo[block].busy.type;
42 __malloc_ptrdiff_t sizevalue = _heapinfo[block].busy.info.size;
47 block += sizevalue;
49 /* BLOCK is now the first block of the object.
51 return ADDRESS (block);
55 /* Get the size of fragments in this block. */