Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
Dmalloc_debug.cpp461 size_t fill_bytes = g_debug->config().fill_on_alloc_bytes(); in InternalMalloc() local
462 bytes = (bytes < fill_bytes) ? bytes : fill_bytes; in InternalMalloc()
519 size_t fill_bytes = g_debug->config().fill_on_free_bytes(); in InternalFree() local
520 bytes = (bytes < fill_bytes) ? bytes : fill_bytes; in InternalFree()
632 size_t fill_bytes = g_debug->config().fill_on_alloc_bytes(); in debug_memalign() local
633 bytes = (bytes < fill_bytes) ? bytes : fill_bytes; in debug_memalign()