Home
last modified time | relevance | path

Searched refs:stack_capacity (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/containers/
Dstack_container.h38 template<typename T, size_t stack_capacity>
60 base::AlignedMemory<sizeof(T[stack_capacity]), ALIGNOF(T)> stack_buffer_;
73 typedef StackAllocator<U, stack_capacity> other;
77 StackAllocator(const StackAllocator<T, stack_capacity>& rhs) in StackAllocator()
110 && n <= stack_capacity) {
139 template<typename TContainerType, int stack_capacity>
144 typedef StackAllocator<ContainedType, stack_capacity> Allocator;
150 container_.reserve(stack_capacity); in StackContainer()
187 template<size_t stack_capacity>
191 StackAllocator<char, stack_capacity> >,
[all …]
/external/v8/src/regexp/
Dregexp-stack.h53 size_t stack_capacity() { return thread_local_.memory_size_; } in stack_capacity() function
Dregexp-macro-assembler.cc286 size_t size = regexp_stack->stack_capacity(); in GrowStack()