Searched defs:alloc (Results 1 - 8 of 8) sorted by last modified time

/art/runtime/base/
H A Ddchecked_vector.h60 explicit dchecked_vector(const allocator_type& alloc) argument
61 : Base(alloc) { }
64 explicit dchecked_vector(size_type n, const allocator_type& alloc = allocator_type())
65 : Base(alloc) { resize(n); }
68 const allocator_type& alloc = allocator_type())
69 : Base(n, value, alloc) { }
73 const allocator_type& alloc = allocator_type())
74 : Base(first, last, alloc) { }
77 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) argument
78 : Base(src, alloc) { }
81 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) argument
[all...]
H A Dhash_map.h68 explicit HashMap(const Alloc& alloc) argument
69 : Base(alloc) { }
/art/runtime/jit/
H A Djit_code_cache.cc262 void JitCodeCache::RemoveMethodsIn(Thread* self, const LinearAlloc& alloc) { argument
271 if (alloc.ContainsUnsafe(it->second)) {
280 if (alloc.ContainsUnsafe(it->first)) {
289 if (alloc.ContainsUnsafe(info->GetMethod())) {
/art/runtime/
H A Dleb128.h239 explicit Leb128EncodingVector(const typename Vector::allocator_type& alloc) argument
240 : Vector(alloc),
H A Dmonitor_pool_test.cc63 bool alloc; local
65 alloc = true;
67 alloc = false;
70 alloc = r.next() % 2 == 0;
73 if (alloc) {
/art/compiler/
H A Dcompiled_method.h123 explicit SrcMap(const Allocator& alloc) : std::vector<SrcMapElem, Allocator>(alloc) {} argument
126 SrcMap(InputIt first, InputIt last, const Allocator& alloc) argument
127 : std::vector<SrcMapElem, Allocator>(first, last, alloc) {}
/art/compiler/utils/
H A Ddedupe_set-inl.h55 Shard(const Alloc& alloc, const std::string& lock_name) argument
56 : alloc_(alloc),
210 const Alloc& alloc)
215 shards_[i].reset(new Shard(alloc, oss.str()));
209 DedupeSet(const char* set_name, const Alloc& alloc) argument
H A Ddedupe_set_test.cc56 DedupeSetTestAlloc alloc; local
61 DedupeSetTestHashFunc> deduplicator("test", alloc);

Completed in 471 milliseconds