Searched refs:stacksize (Results 1 - 25 of 49) sorted by path

12

/external/bluetooth/bluedroid/gki/common/
H A Dgki_debug.c111 int j, stacksize; local
115 stacksize = (int) gki_cb.com.OSStackSize[task];
119 for(j = 0; j < stacksize; j++)
/external/bluetooth/bluedroid/gki/ulinux/
H A Dgki_ulinux.c359 ** 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) argument
376 UNUSED(stacksize);
379 (char*) taskname, (int) stack, (int)stacksize);
460 (int)stacksize);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dcreate.c145 stackSize = (unsigned int)a->stacksize;
H A Dimplement.h202 size_t stacksize; member in struct:pthread_attr_t_
H A Dpthread.h902 size_t * stacksize);
911 size_t stacksize);
H A Dpthread_attr_getstacksize.c46 pthread_attr_getstacksize (const pthread_attr_t * attr, size_t * stacksize) argument
57 * stacksize
91 *stacksize = (*attr)->stacksize;
H A Dpthread_attr_init.c89 attr_result->stacksize = 0;
H A Dpthread_attr_setstacksize.c42 pthread_attr_setstacksize (pthread_attr_t * attr, size_t stacksize) argument
53 * stacksize
76 * EINVAL 'attr' is invalid or stacksize too
88 if (stacksize < PTHREAD_STACK_MIN)
101 (*attr)->stacksize = stacksize;
/external/chromium_org/ppapi/utility/threading/
H A Dsimple_thread.cc57 size_t stacksize)
60 stacksize_(stacksize),
56 SimpleThread(const InstanceHandle& instance, size_t stacksize) argument
H A Dsimple_thread.h32 explicit SimpleThread(const InstanceHandle& instance, size_t stacksize);
61 SimpleThread(const SimpleThread&, size_t stacksize);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_beos.h473 NSPR_API(PRThread*) _MD_create_user_thread(PRUint32 stacksize, void (*start)(void *), void *arg);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprtpool.h64 PRUint32 stacksize);
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dldo.c163 int lim = L->stacksize;
165 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK);
166 luaM_reallocvector(L, L->stack, L->stacksize, newsize, TValue);
169 L->stacksize = newsize;
176 int size = L->stacksize;
210 goodsize >= L->stacksize) /* would grow instead of shrink? */
H A Dlgc.c502 StkId lim = th->stack + th->stacksize; /* real end of stack */
506 return sizeof(lua_State) + sizeof(TValue) * th->stacksize;
H A Dllimits.h299 #define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
H A Dlstate.c137 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;
H A Dlstate.h163 int stacksize; member in struct:lua_State
H A Dlvm.c555 lua_assert(base <= L->top && L->top < L->stack + L->stacksize);
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c293 char *stacksize; /* Size of the parser stack */ member in struct:lemon
2253 psp->declargslot = &(psp->gp->stacksize);
3663 if( lemp->stacksize ){
3664 fprintf(out,"#define YYSTACKDEPTH %s\n",lemp->stacksize); lineno++;
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtestutil.cc97 (*fn)(i); // stacksize doesn't make sense in a non-threaded context
138 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { argument
145 hThread[i] = CreateThread(NULL, stacksize, RunFunctionInThreadWithId,
200 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { argument
203 pthread_attr_setstacksize(&attr, stacksize);
H A Dtestutil.h48 // (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);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtestutil.cc97 (*fn)(i); // stacksize doesn't make sense in a non-threaded context
138 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { argument
145 hThread[i] = CreateThread(NULL, stacksize, RunFunctionInThreadWithId,
200 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { argument
203 pthread_attr_setstacksize(&attr, stacksize);
H A Dtestutil.h48 // (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);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cc94 // 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, kMaxThreadStackSiz
443 size_t stacksize = 0; local
[all...]
H A Dsanitizer_mac.cc159 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;

Completed in 412 milliseconds

12