Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/util/
Du_debug_memory.c48 #define DEBUG_MEMORY_MAGIC 0x6e34090aU macro
143 hdr->magic = DEBUG_MEMORY_MAGIC; in debug_malloc()
154 ftr->magic = DEBUG_MEMORY_MAGIC; in debug_malloc()
174 if(hdr->magic != DEBUG_MEMORY_MAGIC) { in debug_free()
183 if(ftr->magic != DEBUG_MEMORY_MAGIC) { in debug_free()
238 if(old_hdr->magic != DEBUG_MEMORY_MAGIC) { in debug_realloc()
247 if(old_ftr->magic != DEBUG_MEMORY_MAGIC) { in debug_realloc()
267 new_hdr->magic = DEBUG_MEMORY_MAGIC; in debug_realloc()
274 new_ftr->magic = DEBUG_MEMORY_MAGIC; in debug_realloc()
317 if(hdr->magic != DEBUG_MEMORY_MAGIC) { in debug_memory_end()
[all …]