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

1 2

  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_task.c 83 /* TIMM_OSAL_S32 stackSize;*/
117 size_t stackSize;
165 &stackSize))
172 if (uStackSize > stackSize)
174 stackSize = uStackSize;
176 stackSize))
  /frameworks/media/libvideoeditor/osal/inc/
M4OSA_Thread_priv.h 37 M4OSA_UInt32 stackSize; /* thread stackSize in bytes */
  /dalvik/vm/native/
java_lang_VMThread.cpp 25 * static void create(Thread t, long stacksize)
34 s8 stackSize = GET_ARG_LONG(args, 1);
37 dvmCreateInterpThread(threadObj, (int) stackSize);
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_Thread.c 150 threadContext->stackSize = 64 * 1024;
245 if ( 0 == pthread_attr_setstacksize( &attribute, (size_t)threadContext->stackSize ) )
593 threadContext->stackSize = (M4OSA_UInt32)optionValue;
781 M4OSA_UInt32* stackSize = (M4OSA_UInt32*)optionValue;
783 *stackSize = threadContext->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...]
  /external/webkit/Source/JavaScriptCore/wtf/
StackBounds.cpp 92 size_t stackSize = 0;
106 stackSize = threadInfo.stksize;
110 m_origin = static_cast<char*>(stackBase) + stackSize;
160 size_t stackSize = 0;
172 int rc = pthread_attr_getstack(&sattr, &stackBase, &stackSize);
177 m_origin = static_cast<char*>(stackBase) + stackSize;
  /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 */
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 86 // -- Frame directive "frame Stackpointer, Stacksize, RARegister"
193 unsigned stackSize = MF->getFrameInfo()->getStackSize();
197 "," + Twine(stackSize) + ",$" +
  /dalvik/vm/
Thread.cpp 281 thread = allocThread(gDvm.stackSize);
    [all...]
Exception.cpp     [all...]
Globals.h 93 size_t stackSize;
  /external/freetype/src/truetype/
ttinterp.h 126 FT_UInt stackSize; /* size of exec. stack */
  /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;
338 * @param stackSize
347 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
351 create(group, runnable, threadName, stackSize);
379 this.stackSize = 0;
397 * @param stackSize Platform dependent stack size
403 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
426 this.stackSize = stackSize;
    [all...]
  /bionic/libc/bionic/
pthread.c 55 extern void _exit_with_stack_teardown(void * stackBase, int stackSize, int retCode);
328 size_t stackSize = (attr->stack_size +
332 stack = mkstack(stackSize, attr->guard_size);
343 tls = (void**)(stack + stackSize - BIONIC_TLS_SLOTS*sizeof(void*));
365 munmap(stack, stackSize);
    [all...]
  /dalvik/vm/analysis/
CodeVerify.cpp     [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 1528 milliseconds

1 2