HomeSort by relevance Sort by last modified time
    Searched refs:stack_size (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/cc/test/
test_occlusion_tracker.h 32 size_t stack_size = OcclusionTracker<LayerType>::stack_.size(); local
33 if (stack_size < 2)
35 return OcclusionTracker<LayerType>::stack_[stack_size - 2]
40 size_t stack_size = OcclusionTracker<LayerType>::stack_.size(); local
41 if (stack_size < 2)
43 return OcclusionTracker<LayerType>::stack_[stack_size - 2]
58 size_t stack_size = OcclusionTracker<LayerType>::stack_.size(); local
59 DCHECK_GE(stack_size, 2u);
60 OcclusionTracker<LayerType>::stack_[stack_size - 2]
65 size_t stack_size = OcclusionTracker<LayerType>::stack_.size() local
    [all...]
  /bionic/libc/bionic/
pthread_attr.cpp 44 attr->stack_size = PTHREAD_STACK_SIZE_DEFAULT;
92 int pthread_attr_setstacksize(pthread_attr_t* attr, size_t stack_size) {
93 if (stack_size < PTHREAD_STACK_MIN) {
96 attr->stack_size = stack_size;
100 int pthread_attr_getstacksize(const pthread_attr_t* attr, size_t* stack_size) {
102 return pthread_attr_getstack(attr, &unused, stack_size);
105 int pthread_attr_setstack(pthread_attr_t* attr, void* stack_base, size_t stack_size) {
106 if ((stack_size & (PAGE_SIZE - 1) || stack_size < PTHREAD_STACK_MIN))
    [all...]
pthread_exit.cpp 92 size_t stack_size = thread->attr.stack_size; local
107 thread->attr.stack_size = 0;
134 _exit_with_stack_teardown(stack_base, stack_size);
  /external/chromium_org/third_party/ots/src/
cff_type2_charstring.cc 129 const size_t stack_size = argument_stack->size(); local
137 if (stack_size < 1) {
207 if (stack_size < 2) {
210 if ((stack_size % 2) == 0) {
212 } else if ((!(*in_out_found_width)) && (((stack_size - 1) % 2) == 0)) {
217 (*in_out_num_stems) += (stack_size / 2);
229 if (stack_size == 2) {
231 } else if ((!(*in_out_found_width)) && (stack_size - 1 == 2)) {
243 if (stack_size == 1) {
245 } else if ((!(*in_out_found_width)) && (stack_size - 1 == 1))
    [all...]
  /external/chromium_org/mojo/public/cpp/utility/
thread.h 30 size_t stack_size() const { return stack_size_; } function in class:mojo::Thread::Options
31 void set_stack_size(size_t stack_size) { stack_size_ = stack_size; }
  /external/chromium_org/base/containers/
stack_container_unittest.cc 36 const int stack_size = 3; local
37 StackVector<int, stack_size> vect;
40 // The initial |stack_size| elements should appear in the stack buffer.
41 EXPECT_EQ(static_cast<size_t>(stack_size), vect.container().capacity());
42 for (int i = 0; i < stack_size; i++) {
49 for (int i = 0; i < stack_size; i++) {
50 vect.container().push_back(i + stack_size);
56 for (int i = 0; i < stack_size * 2; i++)
63 vect.container().resize(stack_size);
64 vect.container().reserve(stack_size * 2)
    [all...]
  /bionic/libc/kernel/uapi/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /development/ndk/platforms/android-L/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /external/clang/test/CodeGen/
2002-02-14-EntryNodePreds.c 25 int stack_size; member in struct:EDGE_STACK
  /external/kernel-headers/original/uapi/linux/
flat.h 41 unsigned long stack_size; /* Size of stack, in bytes */ member in struct:flat_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
flat.h 41 unsigned long stack_size; /* Size of stack, in bytes */ member in struct:flat_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
flat.h 41 unsigned long stack_size; /* Size of stack, in bytes */ member in struct:flat_hdr
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
flat.h 32 unsigned long stack_size; member in struct:flat_hdr
  /external/chromium_org/base/threading/
platform_thread_win.cc 92 bool CreateThreadInternal(size_t stack_size,
96 if (stack_size > 0 && base::win::GetVersion() >= base::win::VERSION_XP) {
99 stack_size = 0;
112 NULL, stack_size, ThreadFunc, params, flags, NULL);
187 bool PlatformThread::Create(size_t stack_size, Delegate* delegate,
190 return CreateThreadInternal(stack_size, delegate, thread_handle);
194 bool PlatformThread::CreateWithPriority(size_t stack_size, Delegate* delegate,
197 bool result = Create(stack_size, delegate, thread_handle);
204 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) {
205 return CreateThreadInternal(stack_size, delegate, NULL)
    [all...]
platform_thread_posix.cc 90 bool CreateThread(size_t stack_size, bool joinable,
107 if (stack_size == 0)
108 stack_size = base::GetDefaultThreadStackSize(attributes);
110 if (stack_size > 0)
111 pthread_attr_setstacksize(&attributes, stack_size);
203 bool PlatformThread::Create(size_t stack_size, Delegate* delegate,
206 return CreateThread(stack_size, true /* joinable thread */,
211 bool PlatformThread::CreateWithPriority(size_t stack_size, Delegate* delegate,
215 return CreateThread(stack_size, true, // joinable thread
220 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate)
    [all...]
platform_thread.h 161 // Creates a new thread. The |stack_size| parameter can be 0 to indicate
169 static bool Create(size_t stack_size, Delegate* delegate,
177 static bool CreateWithPriority(size_t stack_size, Delegate* delegate,
184 static bool CreateNonJoinable(size_t stack_size, Delegate* delegate);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-360733.js 5 // Flags: --stack_size=150
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.h 58 void *EHRequestExceptionStackOnThread(size_t stack_size);
error_handling.c 217 void *EHRequestExceptionStackOnThread(size_t stack_size) {
223 stack_size = (stack_size + PAGE_CHUNK_MASK) & PAGE_CHUNK_MASK;
224 if (stack_size < STACK_SIZE_MIN) stack_size = STACK_SIZE_MIN;
227 stack = mmap(NULL, stack_size + PAGE_CHUNK_SIZE,
238 if (!s_exception_handling.exception_stack(stack, stack_size)) {
240 munmap(stack, stack_size);
247 stack_info->size = stack_size + PAGE_CHUNK_SIZE;
  /external/compiler-rt/lib/msan/
msan_thread.cc 24 uptr stack_size = 0; local
25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, local
27 stack_top_ = stack_bottom_ + stack_size;

Completed in 1047 milliseconds

1 2 3 4 5 6 7 8