Home
last modified time | relevance | path

Searched defs:Alloc (Results 1 – 20 of 20) sorted by relevance

/art/runtime/base/
Dallocator.cc33 void* Alloc(size_t size) { in Alloc() function in art::FINAL
52 void* Alloc(size_t size) { in Alloc() function in art::FINAL
Dscoped_arena_allocator.h66 void* Alloc(size_t bytes, ArenaAllocKind kind) ALWAYS_INLINE { in Alloc() function
/art/runtime/
Dlinear_alloc.cc31 void* LinearAlloc::Alloc(Thread* self, size_t size) { in Alloc() function in art::LinearAlloc
/art/compiler/utils/
Darena_bit_vector.cc31 virtual void* Alloc(size_t size) { in Alloc() function in art::FINAL
Dswap_space.cc104 void* SwapSpace::Alloc(size_t size) { in Alloc() function in art::SwapSpace
/art/runtime/mirror/
Dstack_trace_element.cc42 StackTraceElement* StackTraceElement::Alloc(Thread* self, Handle<String> declaring_class, in Alloc() function in art::mirror::StackTraceElement
Dobject_array-inl.h37 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class, in Alloc() function
52 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class, in Alloc() function
Darray-inl.h153 inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count, in Alloc() function
206 inline PrimitiveArray<T>* PrimitiveArray<T>::Alloc(Thread* self, size_t length) { in Alloc() function
Dstring-inl.h149 inline String* String::Alloc(Thread* self, int32_t utf16_length, gc::AllocatorType allocator_type, in Alloc() function
Dclass-inl.h591 inline Object* Class::Alloc(Thread* self, gc::AllocatorType allocator_type) { in Alloc() function
/art/runtime/gc/space/
Dregion_space-inl.h26 inline mirror::Object* RegionSpace::Alloc(Thread*, size_t num_bytes, size_t* bytes_allocated, in Alloc() function
114 inline mirror::Object* RegionSpace::Region::Alloc(size_t num_bytes, size_t* bytes_allocated, in Alloc() function
Dbump_pointer_space-inl.h27 inline mirror::Object* BumpPointerSpace::Alloc(Thread*, size_t num_bytes, size_t* bytes_allocated, in Alloc() function
Ddlmalloc_space.h55 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc() function
Drosalloc_space.h52 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc() function
Dzygote_space.cc80 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc() function in art::gc::space::ZygoteSpace
Dlarge_object_space.cc49 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc() function in art::gc::space::FINAL
129 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes, in Alloc() function in art::gc::space::LargeObjectMapSpace
474 mirror::Object* FreeListSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc() function in art::gc::space::FreeListSpace
Dvalgrind_malloc_space-inl.h118 kUseObjSizeForUsable>::Alloc( in Alloc() function
Dspace_test.h65 mirror::Object* Alloc(space::MallocSpace* alloc_space, Thread* self, size_t bytes, in Alloc() function
/art/runtime/gc/allocator/
Drosalloc-inl.h31 inline ALWAYS_INLINE void* RosAlloc::Alloc(Thread* self, size_t size, size_t* bytes_allocated, in Alloc() function
/art/test/004-ThreadStress/src/
DMain.java116 private final static class Alloc extends Operation { class in Main