Home | History | Annotate | Download | only in src

Lines Matching refs:cpp_alloc

1018 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) {
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(size, false);
1582 // We keep this next instruction out of cpp_alloc for a reason: when
1583 // it's in, and new just calls cpp_alloc, the optimizer may fold the
1584 // new call into cpp_alloc, which messes up our whole section-based
1585 // stacktracing (see ATTRIBUTE_SECTION, above). This ensures cpp_alloc
1593 void* p = cpp_alloc(size, true);