Home
last modified time | relevance | path

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

/external/chromium_org/base/containers/
Dstack_container.h36 template<typename T, size_t stack_capacity>
58 base::AlignedMemory<sizeof(T[stack_capacity]), ALIGNOF(T)> stack_buffer_;
71 typedef StackAllocator<U, stack_capacity> other;
75 StackAllocator(const StackAllocator<T, stack_capacity>& rhs) in StackAllocator()
108 && n <= stack_capacity) {
137 template<typename TContainerType, int stack_capacity>
142 typedef StackAllocator<ContainedType, stack_capacity> Allocator;
148 container_.reserve(stack_capacity); in StackContainer()
184 template<size_t stack_capacity>
188 StackAllocator<char, stack_capacity> >,
[all …]
/external/chromium_org/v8/src/
Dregexp-stack.h49 size_t stack_capacity() { return thread_local_.memory_size_; } in stack_capacity() function
Dregexp-macro-assembler.cc242 size_t size = regexp_stack->stack_capacity(); in GrowStack()