Home
last modified time | relevance | path

Searched refs:fill_bytes (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/malloc_debug/
Dmalloc_debug.cpp321 size_t fill_bytes = g_debug->config().fill_on_alloc_bytes(); in internal_malloc() local
322 bytes = (bytes < fill_bytes) ? bytes : fill_bytes; in internal_malloc()
382 size_t fill_bytes = g_debug->config().fill_on_free_bytes(); in internal_free() local
383 bytes = (bytes < fill_bytes) ? bytes : fill_bytes; in internal_free()
472 size_t fill_bytes = g_debug->config().fill_on_alloc_bytes(); in debug_memalign() local
473 bytes = (bytes < fill_bytes) ? bytes : fill_bytes; in debug_memalign()