Home
last modified time | relevance | path

Searched refs:AllocatorType (Results 1 – 25 of 27) sorted by relevance

12

/external/llvm-project/compiler-rt/lib/xray/tests/unit/
Dsegmented_array_test.cpp27 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() typedef
28 AllocatorType A(1 << 4); in TEST()
34 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() typedef
35 AllocatorType A(1 << 4); in TEST()
43 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() typedef
44 AllocatorType A(1 << 4); in TEST()
53 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() typedef
54 AllocatorType A(1 << 24); in TEST()
68 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST() typedef
69 AllocatorType A(1 << 4); in TEST()
[all …]
/external/antlr/runtime/Cpp/include/
Dantlr3memory.hpp49 class AllocatorType : public std::allocator<TYPE> class in DefaultAllocPolicy
60 typedef AllocatorType<U> other;
63 AllocatorType() throw() {} in AllocatorType() function in DefaultAllocPolicy::AllocatorType
64 AllocatorType( const AllocatorType& alloc ) throw() {} in AllocatorType() function in DefaultAllocPolicy::AllocatorType
65 template<typename U> AllocatorType(const AllocatorType<U>& alloc) throw(){} in AllocatorType() function in DefaultAllocPolicy::AllocatorType
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> >
92 class OrderedSetType : public std::set< TYPE, std::less<TYPE>, AllocatorType<TYPE> >
97 class UnOrderedSetType : public std::set< TYPE, std::less<TYPE>, AllocatorType<TYPE> >
[all …]
Dantlr3interfaces.hpp51 template<class AllocatorType>
57 template<class AllocatorType>
/external/llvm/include/llvm/Support/
DRecycler.h66 template<class AllocatorType>
67 void clear(AllocatorType &Allocator) { in clear()
81 template<class SubClass, class AllocatorType>
82 SubClass *Allocate(AllocatorType &Allocator) { in Allocate()
91 template<class AllocatorType>
92 T *Allocate(AllocatorType &Allocator) { in Allocate()
96 template<class SubClass, class AllocatorType>
97 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { in Deallocate() argument
DRecyclingAllocator.h25 template<class AllocatorType, class T,
35 AllocatorType Allocator;
62 template<class AllocatorType, class T, size_t Size, size_t Align>
64 llvm::RecyclingAllocator<AllocatorType, in new() argument
70 template<class AllocatorType, class T, size_t Size, size_t Align>
72 llvm::RecyclingAllocator<AllocatorType, in delete() argument
DArrayRecycler.h102 template<class AllocatorType>
103 void clear(AllocatorType &Allocator) { in clear()
123 template<class AllocatorType>
124 T *allocate(Capacity Cap, AllocatorType &Allocator) { in allocate()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DRecycler.h67 template<class AllocatorType>
68 void clear(AllocatorType &Allocator) { in clear()
82 template<class SubClass, class AllocatorType>
83 SubClass *Allocate(AllocatorType &Allocator) { in Allocate()
92 template<class AllocatorType>
93 T *Allocate(AllocatorType &Allocator) { in Allocate()
97 template<class SubClass, class AllocatorType>
98 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { in Deallocate() argument
DRecyclingAllocator.h24 template <class AllocatorType, class T, size_t Size = sizeof(T),
34 AllocatorType Allocator;
61 template<class AllocatorType, class T, size_t Size, size_t Align>
63 llvm::RecyclingAllocator<AllocatorType, in new() argument
69 template<class AllocatorType, class T, size_t Size, size_t Align>
71 llvm::RecyclingAllocator<AllocatorType, in delete() argument
DArrayRecycler.h103 template<class AllocatorType>
104 void clear(AllocatorType &Allocator) { in clear()
124 template<class AllocatorType>
125 T *allocate(Capacity Cap, AllocatorType &Allocator) { in allocate()
/external/llvm-project/llvm/include/llvm/Support/
DRecycler.h67 template<class AllocatorType>
68 void clear(AllocatorType &Allocator) { in clear()
82 template<class SubClass, class AllocatorType>
83 SubClass *Allocate(AllocatorType &Allocator) { in Allocate()
92 template<class AllocatorType>
93 T *Allocate(AllocatorType &Allocator) { in Allocate()
97 template<class SubClass, class AllocatorType>
98 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { in Deallocate() argument
DRecyclingAllocator.h24 template <class AllocatorType, class T, size_t Size = sizeof(T),
34 AllocatorType Allocator;
61 template<class AllocatorType, class T, size_t Size, size_t Align>
63 llvm::RecyclingAllocator<AllocatorType, in new() argument
69 template<class AllocatorType, class T, size_t Size, size_t Align>
71 llvm::RecyclingAllocator<AllocatorType, in delete() argument
DArrayRecycler.h103 template<class AllocatorType>
104 void clear(AllocatorType &Allocator) { in clear()
124 template<class AllocatorType>
125 T *allocate(Capacity Cap, AllocatorType &Allocator) { in allocate()
/external/openscreen/third_party/abseil/src/absl/container/internal/
Dinlined_vector.h41 template <typename AllocatorType,
43 typename absl::allocator_traits<AllocatorType>::value_type>
45 absl::conjunction<std::is_same<AllocatorType, std::allocator<ValueType>>,
50 template <typename AllocatorType, typename Pointer, typename SizeType>
51 void DestroyElements(AllocatorType* alloc_ptr, Pointer destroy_first, in DestroyElements()
53 using AllocatorTraits = absl::allocator_traits<AllocatorType>; in DestroyElements()
78 template <typename AllocatorType, typename Pointer, typename ValueAdapter,
80 void ConstructElements(AllocatorType* alloc_ptr, Pointer construct_first, in ConstructElements()
101 template <typename AllocatorType>
103 using AllocatorTraits = absl::allocator_traits<AllocatorType>;
[all …]
/external/webrtc/third_party/abseil-cpp/absl/container/internal/
Dinlined_vector.h41 template <typename AllocatorType,
43 typename absl::allocator_traits<AllocatorType>::value_type>
45 absl::conjunction<std::is_same<AllocatorType, std::allocator<ValueType>>,
50 template <typename AllocatorType, typename Pointer, typename SizeType>
51 void DestroyElements(AllocatorType* alloc_ptr, Pointer destroy_first, in DestroyElements()
53 using AllocatorTraits = absl::allocator_traits<AllocatorType>; in DestroyElements()
78 template <typename AllocatorType, typename Pointer, typename ValueAdapter,
80 void ConstructElements(AllocatorType* alloc_ptr, Pointer construct_first, in ConstructElements()
101 template <typename AllocatorType>
103 using AllocatorTraits = absl::allocator_traits<AllocatorType>;
[all …]
/external/abseil-cpp/absl/container/internal/
Dinlined_vector.h41 template <typename AllocatorType,
43 typename absl::allocator_traits<AllocatorType>::value_type>
45 absl::conjunction<std::is_same<AllocatorType, std::allocator<ValueType>>,
50 template <typename AllocatorType, typename Pointer, typename SizeType>
51 void DestroyElements(AllocatorType* alloc_ptr, Pointer destroy_first, in DestroyElements()
53 using AllocatorTraits = absl::allocator_traits<AllocatorType>; in DestroyElements()
78 template <typename AllocatorType, typename Pointer, typename ValueAdapter,
80 void ConstructElements(AllocatorType* alloc_ptr, Pointer construct_first, in ConstructElements()
101 template <typename AllocatorType>
103 using AllocatorTraits = absl::allocator_traits<AllocatorType>;
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Dinlined_vector.h41 template <typename AllocatorType,
43 typename absl::allocator_traits<AllocatorType>::value_type>
45 absl::conjunction<std::is_same<AllocatorType, std::allocator<ValueType>>,
50 template <typename AllocatorType, typename Pointer, typename SizeType>
51 void DestroyElements(AllocatorType* alloc_ptr, Pointer destroy_first, in DestroyElements()
53 using AllocatorTraits = absl::allocator_traits<AllocatorType>; in DestroyElements()
78 template <typename AllocatorType, typename Pointer, typename ValueAdapter,
80 void ConstructElements(AllocatorType* alloc_ptr, Pointer construct_first, in ConstructElements()
101 template <typename AllocatorType>
103 using AllocatorTraits = absl::allocator_traits<AllocatorType>;
[all …]
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Dinlined_vector.h41 template <typename AllocatorType,
43 typename absl::allocator_traits<AllocatorType>::value_type>
45 absl::conjunction<std::is_same<AllocatorType, std::allocator<ValueType>>,
50 template <typename AllocatorType, typename Pointer, typename SizeType>
51 void DestroyElements(AllocatorType* alloc_ptr, Pointer destroy_first, in DestroyElements()
53 using AllocatorTraits = absl::allocator_traits<AllocatorType>; in DestroyElements()
78 template <typename AllocatorType, typename Pointer, typename ValueAdapter,
80 void ConstructElements(AllocatorType* alloc_ptr, Pointer construct_first, in ConstructElements()
101 template <typename AllocatorType>
103 using AllocatorTraits = absl::allocator_traits<AllocatorType>;
[all …]
/external/llvm-project/compiler-rt/lib/xray/
Dxray_profile_collector.cpp68 using ThreadDataAllocator = ThreadDataArray::AllocatorType;
89 using ProfileBufferArrayAllocator = typename ProfileBufferArray::AllocatorType;
152 using PathAllocator = typename PathArray::AllocatorType;
170 using StackAllocator = typename StackArray::AllocatorType; in populateRecords()
265 using ProfileRecordAllocator = typename ProfileRecordArray::AllocatorType; in serialize()
Dxray_function_call_trie.h104 using NodeIdPairAllocatorType = NodeIdPairArray::AllocatorType;
136 using NodeAllocatorType = NodeArray::AllocatorType;
137 using RootAllocatorType = RootArray::AllocatorType;
138 using ShadowStackAllocatorType = ShadowStackArray::AllocatorType;
491 typename Stack::AllocatorType StackAllocator( in deepCopyInto()
549 typename Stack::AllocatorType StackAllocator( in mergeInto()
Dxray_segmented_array.h67 using AllocatorType = Allocator<SegmentSize>; variable
164 AllocatorType *Alloc;
296 explicit Array(AllocatorType &A) XRAY_NEVER_INSTRUMENT in Array()
345 AllocatorType &allocator() const XRAY_NEVER_INSTRUMENT { in allocator()
/external/angle/src/libANGLE/serializer/
DJsonSerializer.h116 rapidjson::Document::AllocatorType &mAllocator;
/external/angle/src/tests/
Dangle_system_info_tests_main.cpp94 js::Document::AllocatorType &allocator = doc.GetAllocator(); in main()
/external/angle/src/tests/test_utils/runner/
DHistogramWriter.cpp96 js::Document::AllocatorType &allocator = doc->GetAllocator(); in getAsJSON()
DTestSuite.cpp201 js::Value ResultTypeToJSString(TestResultType type, js::Document::AllocatorType *allocator) in ResultTypeToJSString()
246 js::Document::AllocatorType &allocator = doc.GetAllocator(); in WriteResultsFile()
/external/angle/src/tests/perf_tests/
DANGLEPerfTest.cpp162 js::Document::AllocatorType &allocator = doc.GetAllocator(); in DumpTraceEventsToJSONFile()

12