Home | History | Annotate | Download | only in src

Lines Matching refs:cpp_alloc

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