Home
last modified time | relevance | path

Searched refs:Allocator (Results 1 – 18 of 18) sorted by relevance

/art/runtime/base/
Dbit_vector_test.cc28 BitVector bv(kBits, false, Allocator::GetMallocAllocator()); in TEST()
74 BitVector bv(false, Allocator::GetNoopAllocator(), kWords, bits); in TEST()
131 BitVector bv(false, Allocator::GetNoopAllocator(), kWords, bits); in TEST()
146 BitVector first(2, true, Allocator::GetMallocAllocator()); in TEST()
147 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST()
148 BitVector third(5, true, Allocator::GetMallocAllocator()); in TEST()
158 BitVector first(2, true, Allocator::GetMallocAllocator()); in TEST()
159 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST()
160 BitVector third(5, true, Allocator::GetMallocAllocator()); in TEST()
172 BitVector first(2, true, Allocator::GetMallocAllocator()); in TEST()
[all …]
Dallocator.cc27 class MallocAllocator FINAL : public Allocator {
46 class NoopAllocator FINAL : public Allocator {
66 Allocator* Allocator::GetMallocAllocator() { in GetMallocAllocator()
70 Allocator* Allocator::GetNoopAllocator() { in GetNoopAllocator()
Dallocator.h29 class Allocator {
31 static Allocator* GetMallocAllocator();
32 static Allocator* GetNoopAllocator();
34 Allocator() {} in Allocator() function
35 virtual ~Allocator() {} in ~Allocator()
41 DISALLOW_COPY_AND_ASSIGN(Allocator);
Dbit_vector.h28 class Allocator; variable
130 Allocator* allocator);
133 Allocator* allocator,
139 Allocator* allocator);
274 Allocator* GetAllocator() const;
301 Allocator* const allocator_; // Allocator if expandable.
Darena_bit_vector.h33 template <typename Allocator>
34 static ArenaBitVector* Create(Allocator* arena,
Dbit_vector.cc28 Allocator* allocator, in BitVector()
43 Allocator* allocator) in BitVector()
53 Allocator* allocator) in BitVector()
371 Allocator* BitVector::GetAllocator() const { in GetAllocator()
Darena_bit_vector.cc53 class ArenaBitVectorAllocator FINAL : public Allocator, private ArenaBitVectorAllocatorKind {
/art/runtime/
Dsafe_map.h32 typename Allocator = TrackingAllocator<std::pair<const K, V>, kAllocatorTagSafeMap>>
35 typedef SafeMap<K, V, Comparator, Allocator> Self;
38 typedef typename ::std::map<K, V, Comparator, Allocator>::key_compare key_compare;
39 typedef typename ::std::map<K, V, Comparator, Allocator>::value_compare value_compare;
40 typedef typename ::std::map<K, V, Comparator, Allocator>::allocator_type allocator_type;
41 typedef typename ::std::map<K, V, Comparator, Allocator>::iterator iterator;
42 typedef typename ::std::map<K, V, Comparator, Allocator>::const_iterator const_iterator;
43 typedef typename ::std::map<K, V, Comparator, Allocator>::size_type size_type;
44 typedef typename ::std::map<K, V, Comparator, Allocator>::key_type key_type;
45 typedef typename ::std::map<K, V, Comparator, Allocator>::value_type value_type;
[all …]
Ddex_reference_collection.h31 template <class IndexType, template<typename Type> class Allocator>
34 using VectorAllocator = Allocator<IndexType>;
36 using MapAllocator = Allocator<std::pair<const DexFile*, IndexVector>>;
41 Allocator<std::pair<const DexFile* const, IndexVector>>>;
Dmonitor_pool.h233 typedef TrackingAllocator<uint8_t, kAllocatorTagMonitorPool> Allocator; typedef
234 Allocator allocator_;
Doat_file_manager.cc173 BitVector type_indexes(/*start_bits*/0, /*expandable*/true, Allocator::GetMallocAllocator()); in GenerateTypeIndexes()
/art/test/130-hprof/src/
DMain.java135 Allocator allocator = new Allocator(); in testGcAndDump()
147 private static class Allocator extends Thread { class in Main
164 Dumper(Allocator allocator) { in Dumper()
167 Allocator allocator;
/art/test/130-hprof/src-ex/
DAllocator.java18 public class Allocator { class
/art/runtime/openjdkjvmti/
Djvmti_weak_table-inl.h247 template <typename Storage, class Allocator>
249 using allocator_type = Allocator;
298 Allocator allocator;
Djvmti_weak_table.h195 template <typename Storage, class Allocator = JvmtiAllocator<T>>
/art/compiler/driver/
Dcompiler_driver.h65 template <class Allocator> class SrcMap;
Dcompiler_driver.cc258 method_indexes_(dex_file.NumMethodIds(), false, Allocator::GetMallocAllocator()) { in DexFileMethodSet()
/art/compiler/
Doat_writer.cc763 Allocator::GetMallocAllocator())); in VisitMethod()
3433 method_bitmap_.reset(new BitVector(num_methods, false, Allocator::GetMallocAllocator())); in OatClass()