HomeSort by relevance Sort by last modified time
    Searched defs:stackSize (Results 1 - 21 of 21) sorted by null

  /dalvik/vm/native/
java_lang_VMThread.c 25 * static void create(Thread t, long stacksize)
34 s8 stackSize = GET_ARG_LONG(args, 1);
37 dvmCreateInterpThread(threadObj, (int) stackSize);
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 92 private int stackSize = 0; // Number of pending runs on stack
188 if (DEBUG) assert ts.stackSize == 1;
348 this.runBase[stackSize] = runBase;
349 this.runLen[stackSize] = runLen;
350 stackSize++;
361 * so the invariants are guaranteed to hold for i < stackSize upon
365 while (stackSize > 1) {
366 int n = stackSize - 2;
384 while (stackSize > 1) {
385 int n = stackSize - 2
    [all...]
TimSort.java 117 private int stackSize = 0; // Number of pending runs on stack
220 if (DEBUG) assert ts.stackSize == 1;
382 this.runBase[stackSize] = runBase;
383 this.runLen[stackSize] = runLen;
384 stackSize++;
395 * so the invariants are guaranteed to hold for i < stackSize upon
399 while (stackSize > 1) {
400 int n = stackSize - 2;
418 while (stackSize > 1) {
419 int n = stackSize - 2
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 54 private int stackSize;
150 stackSize = 0;
210 stackSize -= 1;
264 stackSize = 1;
301 int initialStackSize = stackSize;
304 if (maxStackSize < stackSize)
306 maxStackSize = stackSize;
323 stackSize+" - "+
326 (stackSize+stackPushCount-stackPopCount)+": "+
331 stackSize -= instruction.stackPopCount(clazz)
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
rms_sh.h 113 RMS_WORD stackSize; /* Task's stack size */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
rms_sh.h 113 RMS_WORD stackSize; /* Task's stack size */
  /dalvik/vm/
Exception.c     [all...]
Thread.c 298 thread = allocThread(gDvm.stackSize);
    [all...]
Globals.h 79 unsigned int stackSize;
  /external/freetype/src/truetype/
ttinterp.h 126 FT_UInt stackSize; /* size of exec. stack */
  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 540 static size_t stackSize = 0;
555 stackSize = threadInfo.stksize;
559 return static_cast<char*>(stackBase) + stackSize;
615 static size_t stackSize = 0;
628 int rc = pthread_attr_getstack(&sattr, &stackBase, &stackSize);
634 return static_cast<char*>(stackBase) + stackSize;
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduComposer.java     [all...]
  /libcore/luni/src/main/java/java/lang/
Thread.java 139 volatile long stackSize;
358 * @param stackSize
372 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
376 create(group, runnable, threadName, stackSize);
403 this.stackSize = 0;
421 * @param stackSize Platform dependent stack size
431 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
486 this.stackSize = stackSize;
    [all...]
  /bionic/libc/bionic/
pthread.c 54 extern void _exit_with_stack_teardown(void * stackBase, int stackSize, int retCode);
318 size_t stackSize = (attr->stack_size +
322 stack = mkstack(stackSize, attr->guard_size);
333 tls = (void**)(stack + stackSize - BIONIC_TLS_SLOTS*sizeof(void*));
351 munmap(stack, stackSize);
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1366 milliseconds