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

1 2 3 4

  /libcore/libdvm/src/main/java/java/lang/
VMThread.java 27 native static void create(Thread t, long stackSize);
42 void start(long stackSize) {
43 VMThread.create(thread, stackSize);
Thread.java 133 volatile long stackSize;
332 * @param stackSize
341 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
345 create(group, runnable, threadName, stackSize);
373 this.stackSize = 0;
391 * @param stackSize Platform dependent stack size
397 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
420 this.stackSize = stackSize;
    [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...]
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_Thread_priv.h 37 M4OSA_UInt32 stackSize; /* thread stackSize in bytes */
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
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 */
  /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))
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.h 65 int getAdjustedFrameSize(int stackSize) const;
SparcRegisterInfo.cpp 97 int stackSize = MF.getFrameInfo()->getStackSize();
98 Offset += (stackSize) ? Subtarget.getAdjustedFrameSize(stackSize) : 0 ;
  /frameworks/base/media/jni/mediaeditor/
VideoEditorOsal.h 49 int 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 */
  /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...]
  /libcore/libart/src/main/java/java/lang/
Thread.java 133 volatile long stackSize;
337 * @param stackSize
346 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
350 create(group, runnable, threadName, stackSize);
378 this.stackSize = 0;
396 * @param stackSize Platform dependent stack size
402 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) {
425 this.stackSize = stackSize;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptCallStackFactory.cpp 110 size_t stackSize = 1;
114 stackSize = maxStackSize;
116 return createScriptCallStack(stackSize);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prthread.h 116 ** "stackSize" the size of the stack, in bytes. The value can be zero
140 PRUint32 stackSize);
  /external/icu4c/common/
bytestrieiterator.cpp 111 int32_t stackSize=stack_->size();
112 int32_t length=stack_->elementAti(stackSize-1);
113 pos=bytes_+stack_->elementAti(stackSize-2);
114 stack_->setSize(stackSize-2);
ucharstrieiterator.cpp 110 int32_t stackSize=stack_->size();
111 int32_t length=stack_->elementAti(stackSize-1);
112 pos=uchars_+stack_->elementAti(stackSize-2);
113 stack_->setSize(stackSize-2);
  /frameworks/av/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;
  /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);
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 198 uint64_t stackSize = MF.getFrameInfo()->getStackSize();
203 << "stackSize : " << stackSize << "\n");
205 eliminateFI(MI, FIOperandNum, FrameIndex, stackSize, spOffset);
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduComposer.java     [all...]
  /dalvik/vm/interp/
Stack.h 178 bool dvmInitInterpStack(Thread* thread, int stackSize);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/private/
pprthred.h 157 PRUint32 stackSize);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Console.cpp 72 size_t stackSize = printTrace ? ScriptCallStack::maxCallStackSizeToCapture : 1;
73 RefPtr<ScriptCallStack> callStack(createScriptCallStack(state, stackSize));

Completed in 1636 milliseconds

1 2 3 4