Searched defs:cpp_alloc (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc1029 inline void* cpp_alloc(size_t size, bool nothrow);
1037 return tc_new_mode ? cpp_alloc(size, true) : do_malloc(size);
1418 inline void* cpp_alloc(size_t size, bool nothrow) { function in namespace:__anon15569
1603 void* p = cpp_alloc(size, false);
1604 // We keep this next instruction out of cpp_alloc for a reason: when
1605 // it's in, and new just calls cpp_alloc, the optimizer may fold the
1606 // new call into cpp_alloc, which messes up our whole section-based
1607 // stacktracing (see ATTRIBUTE_SECTION, above). This ensures cpp_alloc
1614 void* p = cpp_alloc(size, true);
1633 void* p = cpp_alloc(siz
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc1018 inline void* cpp_alloc(size_t size, bool nothrow);
1026 return tc_new_mode ? cpp_alloc(size, true) : do_malloc(size);
1373 inline void* cpp_alloc(size_t size, bool nothrow) { function in namespace:__anon15612
1551 void* p = cpp_alloc(size, false);
1552 // We keep this next instruction out of cpp_alloc for a reason: when
1553 // it's in, and new just calls cpp_alloc, the optimizer may fold the
1554 // new call into cpp_alloc, which messes up our whole section-based
1555 // stacktracing (see ATTRIBUTE_SECTION, above). This ensures cpp_alloc
1562 void* p = cpp_alloc(size, true);
1581 void* p = cpp_alloc(siz
[all...]

Completed in 101 milliseconds