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

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc64 // in Populate() for pages with sizeclass > 0 objects, and in do_malloc() and
1027 inline void* do_malloc(size_t size);
1031 // This is equivalent to do_malloc() except when tc_new_mode is set to true.
1034 return tc_new_mode ? cpp_alloc(size, true) : do_malloc(size);
1057 // Helper for do_malloc().
1088 inline void* do_malloc(size_t size) { function in namespace:__anon13868
1262 ExcludeMarkFromSize(&new_size); // do_malloc will add space if needed.
1264 // Either new_size is not a tiny increment, or last do_malloc failed.
1308 void* p = do_malloc(size);
1417 void* p = do_malloc(siz
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc64 // in Populate() for pages with sizeclass > 0 objects, and in do_malloc() and
1019 inline void* do_malloc(size_t size);
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);
1049 // Helper for do_malloc().
1075 inline void* do_malloc(size_t size) { function in namespace:__anon13911
1225 // Either new_size is not a tiny increment, or last do_malloc failed.
1266 void* p = do_malloc(size);
1375 void* p = do_malloc(size);
1479 do_free(do_malloc(
[all...]

Completed in 62 milliseconds