Searched refs:debug_cpp_alloc (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
D | debugallocation.cc | 1104 inline void* debug_cpp_alloc(size_t size, int new_type, bool nothrow) { in debug_cpp_alloc() function 1153 return tc_new_mode ? debug_cpp_alloc(size, MallocBlock::kMallocType, true) in do_debug_malloc_or_debug_cpp_alloc() 1215 void* ptr = debug_cpp_alloc(size, MallocBlock::kNewType, false); in tc_new() 1224 void* ptr = debug_cpp_alloc(size, MallocBlock::kNewType, true); in tc_new_nothrow() 1242 void* ptr = debug_cpp_alloc(size, MallocBlock::kArrayNewType, false); in tc_newarray() 1252 void* ptr = debug_cpp_alloc(size, MallocBlock::kArrayNewType, true); in tc_newarray_nothrow()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
D | debugallocation.cc | 1111 inline void* debug_cpp_alloc(size_t size, int new_type, bool nothrow) { in debug_cpp_alloc() function 1160 return tc_new_mode ? debug_cpp_alloc(size, MallocBlock::kMallocType, true) in do_debug_malloc_or_debug_cpp_alloc() 1227 void* ptr = debug_cpp_alloc(size, MallocBlock::kNewType, false); in tc_new() 1236 void* ptr = debug_cpp_alloc(size, MallocBlock::kNewType, true); in tc_new_nothrow() 1254 void* ptr = debug_cpp_alloc(size, MallocBlock::kArrayNewType, false); in tc_newarray() 1264 void* ptr = debug_cpp_alloc(size, MallocBlock::kArrayNewType, true); in tc_newarray_nothrow()
|