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

1 2

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_attr_setstacksize.c 42 pthread_attr_setstacksize (pthread_attr_t * attr, size_t stacksize)
53 * stacksize
76 * EINVAL 'attr' is invalid or stacksize too
88 if (stacksize < PTHREAD_STACK_MIN)
101 (*attr)->stacksize = stacksize;
pthread_attr_getstacksize.c 46 pthread_attr_getstacksize (const pthread_attr_t * attr, size_t * stacksize)
57 * stacksize
91 *stacksize = (*attr)->stacksize;
pthread_attr_init.c 89 attr_result->stacksize = 0;
create.c 93 unsigned int stackSize;
145 stackSize = (unsigned int)a->stacksize;
185 * Default stackSize
187 stackSize = PTHREAD_STACK_MIN;
208 stackSize, /* default stack size */
241 (HANDLE) _beginthread (ptw32_threadStart, stackSize, /* default stack size */
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
testutil.h 48 // (If you're curious why this takes a stacksize and the others don't,
49 // it's because the one client of this fn wanted to specify stacksize. :-) )
53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
testutil.cc 97 (*fn)(i); // stacksize doesn't make sense in a non-threaded context
138 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) {
145 hThread[i] = CreateThread(NULL, stacksize, RunFunctionInThreadWithId,
200 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) {
203 pthread_attr_setstacksize(&attr, stacksize);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
testutil.h 48 // (If you're curious why this takes a stacksize and the others don't,
49 // it's because the one client of this fn wanted to specify stacksize. :-) )
53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
testutil.cc 97 (*fn)(i); // stacksize doesn't make sense in a non-threaded context
138 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) {
145 hThread[i] = CreateThread(NULL, stacksize, RunFunctionInThreadWithId,
200 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) {
203 pthread_attr_setstacksize(&attr, stacksize);
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 55 int stacksize, stacksize2; local
62 stacksize = 1;
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
71 stacksize = compileParameterList(code, parameters, 1);
82 if (stacksize < stacksize2)
83 stacksize = stacksize2;
94 if (stacksize < stacksize2)
95 stacksize = stacksize2;
98 code.setMaxStack(stacksize);
CtNewWrappedMethod.java 59 int stacksize = makeBody0(clazz, classfile, wrappedBody, isStatic, local
61 code.setMaxStack(stacksize);
83 int stacksize = compileParameterList(code, parameters, local
117 if (stacksize < stacksize2 + 2)
118 stacksize = stacksize2 + 2;
120 return stacksize;
CtField.java 998 int stacksize; local
1046 int stacksize = 2; local
1094 int stacksize; local
1139 int stacksize = 1; local
    [all...]
CtClassType.java 1464 int stacksize = 0; local
1549 int stacksize = makeFieldInitializer(init, params); local
1585 int stacksize = 0; local
    [all...]
  /external/chromium_org/ppapi/utility/threading/
simple_thread.h 32 explicit SimpleThread(const InstanceHandle& instance, size_t stacksize);
61 SimpleThread(const SimpleThread&, size_t stacksize);
simple_thread.cc 57 size_t stacksize)
60 stacksize_(stacksize),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 94 // Get stacksize from rlimit, but clip it so that it does not overlap
96 uptr stacksize = rl.rlim_cur; local
97 if (stacksize > end - prev_end)
98 stacksize = end - prev_end;
102 if (stacksize > kMaxThreadStackSize)
103 stacksize = kMaxThreadStackSize;
105 *stack_bottom = end - stacksize;
111 uptr stacksize = 0; local
113 my_pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize);
116 CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check
443 size_t stacksize = 0; local
    [all...]
sanitizer_mac.cc 159 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local
164 stacksize == (1 << 19)) {
169 stacksize = rl.rlim_cur;
171 stacksize = kMaxThreadStackSize;
176 *stack_bottom = *stack_top - stacksize;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prtpool.h 64 PRUint32 stacksize);
  /external/opencv/cv/src/
cvconvhull.cpp 50 int stacksize = 3; local
85 stack[stacksize] = pnext;
86 stacksize++;
99 stack[stacksize-2] = pnext;
101 pprev = stack[stacksize-4];
102 stacksize--;
109 stack[stacksize-1] = pnext;
113 return --stacksize;
123 int stacksize = 3; local
158 stack[stacksize] = pnext
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstate.c 137 L1->stacksize = BASIC_STACK_SIZE;
141 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
158 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */
206 L->stacksize = 0;
lstate.h 163 int stacksize; member in struct:lua_State
  /external/bluetooth/bluedroid/gki/common/
gki_debug.c 111 int j, stacksize; local
115 stacksize = (int) gki_cb.com.OSStackSize[task];
119 for(j = 0; j < stacksize; j++)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 220 size_t stacksize; local
221 pthread_attr_getstack(&attr, &stackaddr, &stacksize);
222 return (void *)((uptr)stackaddr + stacksize - descr_addr);
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_debug.c 110 int j, stacksize; local
114 stacksize = (int) gki_cb.com.OSStackSize[task];
118 for(j = 0; j < stacksize; j++)
  /external/libnfc-nci/src/gki/common/
gki_debug.c 110 int j, stacksize; local
114 stacksize = (int) gki_cb.com.OSStackSize[task];
118 for(j = 0; j < stacksize; j++)
  /external/bluetooth/bluedroid/gki/ulinux/
gki_ulinux.c 359 ** stacksize - (input) size of the stack allocated for the task
368 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize)
376 UNUSED(stacksize);
379 (char*) taskname, (int) stack, (int)stacksize);
460 (int)stacksize);
    [all...]

Completed in 634 milliseconds

1 2