Searched defs:new (Results 1 - 3 of 3) sorted by relevance

/art/runtime/base/
H A Darena_object.h26 // Parent for arena allocated objects giving appropriate new and delete operators.
30 // Allocate a new ArenaObject of 'size' bytes in the Arena.
31 void* operator new(size_t size, ArenaAllocator* allocator) {
35 static void* operator new(size_t size, ScopedArenaAllocator* arena) {
44 // NOTE: Providing placement new (and matching delete) for constructing container elements.
45 ALWAYS_INLINE void* operator new(size_t, void* ptr) noexcept { return ptr; }
50 // Parent for arena allocated objects that get deleted, gives appropriate new and delete operators.
54 // Allocate a new ArenaObject of 'size' bytes in the Arena.
55 void* operator new(size_t size, ArenaAllocator* allocator) {
59 static void* operator new(size_
[all...]
/art/runtime/verifier/
H A Dreg_type-inl.h188 inline void* RegType::operator new(size_t size, ScopedArenaAllocator* arena) {
/art/runtime/
H A Dmonitor.h143 void* operator new(size_t size) {
340 // If we allow new monitor registration during sweeping this monitor may be incorrectly freed as

Completed in 114 milliseconds