Home
last modified time | relevance | path

Searched refs:StackAllocator (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/containers/
Dstack_container.h36 class StackAllocator : public std::allocator<T> {
70 typedef StackAllocator<U, stack_capacity> other;
74 StackAllocator(const StackAllocator<T, stack_capacity>& rhs) in StackAllocator() function
88 StackAllocator(const StackAllocator<U, other_capacity>& other) in StackAllocator() function
96 StackAllocator() : source_(NULL) { in StackAllocator() function
99 explicit StackAllocator(Source* source) : source_(source) { in StackAllocator() function
145 typedef StackAllocator<ContainedType, stack_capacity> Allocator;
194 std::vector<T, StackAllocator<T, stack_capacity> >,
198 std::vector<T, StackAllocator<T, stack_capacity> >, in StackVector()
208 std::vector<T, StackAllocator<T, stack_capacity> >, in StackVector()
Dstack_container_unittest.cc72 std::vector<int, StackAllocator<int, stack_size> > other(vect.container()); in TEST()
/external/llvm-project/compiler-rt/lib/xray/
Dxray_function_call_trie.h491 typename Stack::AllocatorType StackAllocator( in deepCopyInto()
493 Stack DFSStack(StackAllocator); in deepCopyInto()
549 typename Stack::AllocatorType StackAllocator( in mergeInto()
551 Stack DFSStack(StackAllocator); in mergeInto()
Dxray_profile_collector.cpp170 using StackAllocator = typename StackArray::AllocatorType; in populateRecords() typedef
171 StackAllocator StackAlloc(profilingFlags()->stack_allocator_max); in populateRecords()
/external/tensorflow/tensorflow/lite/micro/
Dtest_helpers.cc40 class StackAllocator : public flatbuffers::Allocator { class
42 StackAllocator() : data_(data_backing_), data_size_(0) {} in StackAllocator() function in tflite::testing::__anon4d49c9e80111::StackAllocator
54 static StackAllocator& instance() { in instance()
56 static char inst_memory[sizeof(StackAllocator)]; in instance()
57 static StackAllocator* inst = new (inst_memory) StackAllocator; in instance()
73 StackAllocator::kStackAllocatorSize, &StackAllocator::instance()); in BuilderInstance()