Home
last modified time | relevance | path

Searched defs:alloc (Results 1 – 11 of 11) sorted by relevance

/art/runtime/base/
Ddchecked_vector.h60 explicit dchecked_vector(const allocator_type& alloc) in dchecked_vector()
65 : Base(alloc) { resize(n); } in Base() argument
69 : Base(n, value, alloc) { } in Base() argument
74 : Base(first, last, alloc) { } in Base() argument
77 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) in dchecked_vector()
81 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) in dchecked_vector()
85 : Base(il, alloc) { } in Base() argument
Dhash_map.h68 explicit HashMap(const Alloc& alloc) in HashMap()
Dhash_set.h155 explicit HashSet(const allocator_type& alloc) noexcept in HashSet()
/art/compiler/
Dcompiled_method.cc133 SwapAllocator<CompiledMethod> alloc(driver->GetCompiledMethodStorage()->GetSwapSpaceAllocator()); in SwapAllocCompiledMethod() local
149 SwapAllocator<CompiledMethod> alloc(driver->GetCompiledMethodStorage()->GetSwapSpaceAllocator()); in ReleaseSwapAllocatedCompiledMethod() local
Dcompiled_method.h123 explicit SrcMap(const Allocator& alloc) : std::vector<SrcMapElem, Allocator>(alloc) {} in SrcMap()
126 SrcMap(InputIt first, InputIt last, const Allocator& alloc) in SrcMap()
/art/compiler/utils/
Dswap_space_test.cc40 SwapAllocator<void> alloc(use_file ? &pool : nullptr); in SwapTest() local
Ddedupe_set_test.cc56 DedupeSetTestAlloc alloc; in TEST() local
/art/runtime/
Dmonitor_pool_test.cc63 bool alloc; in TEST_F() local
Dleb128.h239 explicit Leb128EncodingVector(const typename Vector::allocator_type& alloc) in Leb128EncodingVector()
/art/tools/ahat/src/
DAhatSnapshot.java124 InstanceUtils.NativeAllocation alloc = InstanceUtils.getNativeAllocation(inst); in AhatSnapshot() local
/art/runtime/jit/
Djit_code_cache.cc262 void JitCodeCache::RemoveMethodsIn(Thread* self, const LinearAlloc& alloc) { in RemoveMethodsIn()