Searched refs:tc_new_mode (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc280 static int tc_new_mode = 0; // See tc_set_new_mode(). variable
1023 // This is equivalent to do_malloc() except when tc_new_mode is set to true.
1026 return tc_new_mode ? cpp_alloc(size, true) : do_malloc(size);
1033 return tc_new_mode ? cpp_memalign(align, size) : do_memalign(align, size);
1500 int old_mode = tc_new_mode;
1501 tc_new_mode = flag;
H A Ddebugallocation.cc1101 // don't have to reproduce the logic here. To make tc_new_mode work
1153 return tc_new_mode ? debug_cpp_alloc(size, MallocBlock::kMallocType, true)
1354 return tc_new_mode ? debug_cpp_memalign(align, size)
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc280 static int tc_new_mode = 0; // See tc_set_new_mode(). variable
1034 // This is equivalent to do_malloc() except when tc_new_mode is set to true.
1037 return tc_new_mode ? cpp_alloc(size, true) : do_malloc(size);
1044 return tc_new_mode ? cpp_memalign(align, size) : do_memalign(align, size);
1552 int old_mode = tc_new_mode;
1553 tc_new_mode = flag;
H A Ddebugallocation.cc1108 // don't have to reproduce the logic here. To make tc_new_mode work
1160 return tc_new_mode ? debug_cpp_alloc(size, MallocBlock::kMallocType, true)
1366 return tc_new_mode ? debug_cpp_memalign(align, size)

Completed in 160 milliseconds