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 ATTRIBUTE_UNUSED) { in Alloc() function in art::FINAL
Darena_bit_vector.cc65 virtual void* Alloc(size_t size) { in Alloc() function in art::FINAL
Dscoped_arena_allocator.h88 void* Alloc(size_t bytes, ArenaAllocKind kind) ALWAYS_INLINE { in Alloc() function
/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.h152 inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count, in Alloc() function
205 inline PrimitiveArray<T>* PrimitiveArray<T>::Alloc(Thread* self, size_t length) { in Alloc() function
Dstring-inl.h156 inline String* String::Alloc(Thread* self, int32_t utf16_length, gc::AllocatorType allocator_type, in Alloc() function
Dclass-inl.h686 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.cc79 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc() function in art::gc::space::ZygoteSpace
Dlarge_object_space.cc52 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc() function in art::gc::space::FINAL
133 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes, in Alloc() function in art::gc::space::LargeObjectMapSpace
479 mirror::Object* FreeListSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc() function in art::gc::space::FreeListSpace
Dmemory_tool_malloc_space-inl.h116 kUseObjSizeForUsable>::Alloc( in Alloc() function
Dspace_test.h68 mirror::Object* Alloc(space::MallocSpace* alloc_space, in Alloc() function
/art/runtime/
Dlinear_alloc.cc31 void* LinearAlloc::Alloc(Thread* self, size_t size) { in Alloc() function in art::LinearAlloc
/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/compiler/utils/
Dswap_space.cc107 void* SwapSpace::Alloc(size_t size) { in Alloc() function in art::SwapSpace
/art/test/004-ThreadStress/src/
DMain.java119 private final static class Alloc extends Operation { class in Main