Lines Matching refs:base
77 void* base; // Always points to the memory allocated using dlmalloc. member
321 dlfree(gone->base); in add_to_backlog()
330 hdr->base = hdr; in chk_malloc()
356 void* base = dlmalloc(sizeof(hdr_t) + size + sizeof(ftr_t)); in chk_memalign() local
357 if (base != NULL) { in chk_memalign()
360 uintptr_t ptr = reinterpret_cast<uintptr_t>(user(reinterpret_cast<hdr_t*>(base))); in chk_memalign()
367 hdr->base = base; in chk_memalign()
372 return base; in chk_memalign()
458 if (hdr->base != hdr) { in chk_realloc()
464 dlfree(hdr->base); in chk_realloc()
467 dlfree(hdr->base); in chk_realloc()
474 hdr->base = hdr; in chk_realloc()
488 hdr->base = hdr; in chk_calloc()