HomeSort by relevance Sort by last modified time
    Searched refs:AllocatorType (Results 1 - 25 of 39) sorted by null

1 2

  /art/runtime/gc/
allocator_type.h 27 enum AllocatorType {
40 std::ostream& operator<<(std::ostream& os, const AllocatorType& rhs);
42 inline constexpr bool IsTLABAllocator(AllocatorType allocator) {
heap-inl.h 48 AllocatorType allocator,
252 AllocatorType allocator_type,
396 inline bool Heap::IsOutOfMemoryOnAllocation(AllocatorType allocator_type,
heap.h 263 AllocatorType allocator,
271 AllocatorType GetCurrentAllocator() const {
275 AllocatorType GetCurrentNonMovingAllocator() const {
308 void ChangeAllocator(AllocatorType allocator)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
RecyclingAllocator.h 25 template<class AllocatorType, class T,
35 AllocatorType Allocator;
59 template<class AllocatorType, class T, size_t Size, size_t Align>
61 llvm::RecyclingAllocator<AllocatorType,
66 template<class AllocatorType, class T, size_t Size, size_t Align>
68 llvm::RecyclingAllocator<AllocatorType,
Recycler.h 81 template<class AllocatorType>
82 void clear(AllocatorType &Allocator) {
89 template<class SubClass, class AllocatorType>
90 SubClass *Allocate(AllocatorType &Allocator) {
100 template<class AllocatorType>
101 T *Allocate(AllocatorType &Allocator) {
105 template<class SubClass, class AllocatorType>
106 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
  /external/antlr/runtime/Cpp/include/
antlr3memory.hpp 49 class AllocatorType : public std::allocator<TYPE>
60 typedef AllocatorType<U> other;
63 AllocatorType() throw() {}
64 AllocatorType( const AllocatorType& alloc ) throw() {}
65 template<typename U> AllocatorType(const AllocatorType<U>& alloc) throw(){}
69 class VectorType : public std::vector< TYPE, AllocatorType<TYPE> >
74 class ListType : public std::deque< TYPE, AllocatorType<TYPE> >
79 class StackType : public std::deque< TYPE, AllocatorType<TYPE>
    [all...]
antlr3interfaces.hpp 51 template<class AllocatorType>
57 template<class AllocatorType>
  /external/llvm/include/llvm/Support/
Recycler.h 66 template<class AllocatorType>
67 void clear(AllocatorType &Allocator) {
81 template<class SubClass, class AllocatorType>
82 SubClass *Allocate(AllocatorType &Allocator) {
91 template<class AllocatorType>
92 T *Allocate(AllocatorType &Allocator) {
96 template<class SubClass, class AllocatorType>
97 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
RecyclingAllocator.h 25 template<class AllocatorType, class T,
35 AllocatorType Allocator;
62 template<class AllocatorType, class T, size_t Size, size_t Align>
64 llvm::RecyclingAllocator<AllocatorType,
70 template<class AllocatorType, class T, size_t Size, size_t Align>
72 llvm::RecyclingAllocator<AllocatorType,
ArrayRecycler.h 102 template<class AllocatorType>
103 void clear(AllocatorType &Allocator) {
123 template<class AllocatorType>
124 T *allocate(Capacity Cap, AllocatorType &Allocator) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Recycler.h 68 template<class AllocatorType>
69 void clear(AllocatorType &Allocator) {
83 template<class SubClass, class AllocatorType>
84 SubClass *Allocate(AllocatorType &Allocator) {
93 template<class AllocatorType>
94 T *Allocate(AllocatorType &Allocator) {
98 template<class SubClass, class AllocatorType>
99 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
RecyclingAllocator.h 25 template <class AllocatorType, class T, size_t Size = sizeof(T),
35 AllocatorType Allocator;
62 template<class AllocatorType, class T, size_t Size, size_t Align>
64 llvm::RecyclingAllocator<AllocatorType,
70 template<class AllocatorType, class T, size_t Size, size_t Align>
72 llvm::RecyclingAllocator<AllocatorType,
ArrayRecycler.h 104 template<class AllocatorType>
105 void clear(AllocatorType &Allocator) {
125 template<class AllocatorType>
126 T *allocate(Capacity Cap, AllocatorType &Allocator) {
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.h 35 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator)
quick_alloc_entrypoints.cc 37 gc::AllocatorType allocator_type>
205 static gc::AllocatorType entry_points_allocator = gc::kAllocatorTypeDlMalloc;
207 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator) {
  /art/runtime/mirror/
object_array-alloc-inl.h 39 gc::AllocatorType allocator_type) {
70 gc::AllocatorType allocator_type = heap->IsMovableObject(this) ? heap->GetCurrentAllocator() :
class-alloc-inl.h 49 inline ObjPtr<Object> Class::Alloc(Thread* self, gc::AllocatorType allocator_type) {
string-alloc-inl.h 160 gc::AllocatorType allocator_type,
202 inline ObjPtr<String> String::AllocEmptyString(Thread* self, gc::AllocatorType allocator_type) {
214 gc::AllocatorType allocator_type) {
229 gc::AllocatorType allocator_type) {
244 gc::AllocatorType allocator_type) {
string.h 123 gc::AllocatorType allocator_type)
131 gc::AllocatorType allocator_type)
139 gc::AllocatorType allocator_type)
144 gc::AllocatorType allocator_type)
254 gc::AllocatorType allocator_type,
array.cc 56 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
124 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
149 gc::AllocatorType allocator_type = heap->IsMovableObject(this) ? heap->GetCurrentAllocator() :
object_array.h 37 gc::AllocatorType allocator_type)
string.cc 89 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
127 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
165 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
202 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
  /art/runtime/native/
java_lang_StringFactory.cc 49 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
66 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
83 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
  /art/runtime/entrypoints/
entrypoint_utils.h 55 gc::AllocatorType allocator_type)
64 gc::AllocatorType allocator_type)
73 gc::AllocatorType allocator_type)
95 gc::AllocatorType allocator_type)
104 gc::AllocatorType allocator_type)
entrypoint_utils-inl.h 189 gc::AllocatorType allocator_type) {
210 gc::AllocatorType allocator_type) {
233 gc::AllocatorType allocator_type) {
283 gc::AllocatorType allocator_type) {
308 gc::AllocatorType allocator_type) {
    [all...]

Completed in 544 milliseconds

1 2