Searched refs:StackAllocator (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/containers/ |
D | stack_container.h | 36 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()
|
/external/tensorflow/tensorflow/lite/experimental/micro/ |
D | simple_tensor_allocator_test.cc | 22 class StackAllocator : public flatbuffers::Allocator { class 24 StackAllocator() : data_(data_backing_), data_size_(0) {} in StackAllocator() function in tflite::__anon83d1e24f0111::StackAllocator 39 static StackAllocator& instance() { in instance() 41 static char inst_memory[sizeof(StackAllocator)]; in instance() 42 static StackAllocator* inst = new (inst_memory) StackAllocator; in instance() 58 StackAllocator::kStackAllocatorSize, &StackAllocator::instance()); in BuilderInstance()
|
D | micro_interpreter_test.cc | 63 class StackAllocator : public flatbuffers::Allocator { class 65 StackAllocator() : data_(data_backing_), data_size_(0) {} in StackAllocator() function in tflite::__anond3feb0980111::StackAllocator 80 static StackAllocator& instance() { in instance() 82 static char inst_memory[sizeof(StackAllocator)]; in instance() 83 static StackAllocator* inst = new (inst_memory) StackAllocator; in instance() 97 flatbuffers::FlatBufferBuilder builder(StackAllocator::kStackAllocatorSize, in BuildMockModel() 98 &StackAllocator::instance()); in BuildMockModel()
|