HomeSort by relevance Sort by last modified time
    Searched refs:stacksize (Results 1 - 25 of 48) 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;
  /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 51 // Get stacksize from rlimit, but clip it so that it does not overlap
53 uptr stacksize = rl.rlim_cur; local
54 if (stacksize > end - prev_end)
55 stacksize = end - prev_end;
59 if (stacksize > kMaxThreadStackSize)
60 stacksize = kMaxThreadStackSize;
62 *stack_bottom = end - stacksize;
68 uptr stacksize = 0; local
70 pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize);
73 CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check
267 size_t stacksize = 0; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-x86-darwin.c 266 " push %edi\n" // stacksize
278 Addr stacksize, Addr flags, Addr sp)
284 // VG_(printf)("pthread_hijack pthread %p, machthread %p, func %p, arg %p, stack %p, flags %p, stack %p\n", self, kport, func, func_arg, stacksize, flags, sp);
305 vex->guest_EDI = stacksize;
316 Addr stack = VG_PGROUNDUP(sp) - stacksize;
317 tst->client_stack_highest_word = stack+stacksize;
318 tst->client_stack_szB = stacksize;
322 stack+stacksize, pthread_structsize,
326 stack, stacksize,
387 SizeT stacksize; local
    [all...]
syswrap-amd64-darwin.c 321 Addr stacksize, Addr flags, Addr sp)
327 // VG_(printf)("pthread_hijack pthread %p, machthread %p, func %p, arg %p, stack %p, flags %p, stack %p\n", self, kport, func, func_arg, stacksize, flags, sp);
347 vex->guest_R8 = stacksize;
358 Addr stack = VG_PGROUNDUP(sp) - stacksize;
359 tst->client_stack_highest_word = stack+stacksize;
360 tst->client_stack_szB = stacksize;
364 stack+stacksize, pthread_structsize,
368 stack, stacksize,
422 SizeT stacksize; local
493 stacksize = 512*1024; // wq stacks are always DEFAULT_STACK_SIZ
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 113 stacksize = c.co_stacksize
126 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 d = new.code(argcount, nlocals, stacksize, flags, codestring,
137 -argcount, nlocals, stacksize, flags, codestring,
142 argcount, -nlocals, stacksize, flags, codestring,
147 argcount, nlocals, stacksize, flags, codestring,
154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_new.py 113 stacksize = c.co_stacksize
126 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 d = new.code(argcount, nlocals, stacksize, flags, codestring,
137 -argcount, nlocals, stacksize, flags, codestring,
142 argcount, -nlocals, stacksize, flags, codestring,
147 argcount, nlocals, stacksize, flags, codestring,
154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
  /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/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/valgrind/main/coregrind/m_initimg/
initimg-darwin.c 332 unsigned stacksize; /* total client stack size */ local
388 stacksize =
398 if (0) VG_(printf)("stacksize = %d\n", stacksize);
401 client_SP = clstack_end - stacksize;
420 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n"
423 stringsize, auxsize, stacksize, (Int)clstack_max_size,

Completed in 382 milliseconds

1 2