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

1 2 3 4

  /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 */
  /external/icu/icu4c/source/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);
  /hardware/ti/omap4-aah/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))
  /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/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptCallStackFactory.cpp 113 size_t stackSize = 1;
116 stackSize = maxStackSize;
118 return createScriptCallStack(stackSize);
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 241 uint64_t stackSize = MF.getFrameInfo()->getStackSize();
246 << "stackSize : " << stackSize << "\n");
248 eliminateFI(MI, FIOperandNum, FrameIndex, stackSize, spOffset);
MipsAsmPrinter.cpp 212 // -- Frame directive "frame Stackpointer, Stacksize, RARegister"
311 unsigned stackSize = MF->getFrameInfo()->getStackSize();
313 getTargetStreamer().emitFrame(stackReg, stackSize, returnReg);
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcRegisterInfo.cpp 171 int stackSize = MF.getFrameInfo()->getStackSize();
172 Offset += (stackSize) ? Subtarget.getAdjustedFrameSize(stackSize) : 0 ;
  /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/libcxxabi/src/Unwind/
CompactUnwinder.hpp 130 uint32_t stackSize = stackSizeEncoded * 4;
134 stackSize = subl + 4 * stackAdjust;
203 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount;
359 uint32_t stackSize = stackSizeEncoded * 8;
363 stackSize = subl + 8 * stackAdjust;
432 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount;
531 uint32_t stackSize =
534 uint64_t savedRegisterLoc = registers.getSP() + stackSize;
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 56 private int stackSize;
149 stackSize = 0;
209 stackSize -= 1;
263 stackSize = 1;
300 int initialStackSize = stackSize;
303 if (maxStackSize < stackSize)
305 maxStackSize = stackSize;
322 stackSize+" - "+
325 (stackSize+stackPushCount-stackPopCount)+": "+
330 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 */
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
CompactUnwinder.hpp 130 uint32_t stackSize = stackSizeEncoded * 4;
134 stackSize = subl + 4 * stackAdjust;
203 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount;
359 uint32_t stackSize = stackSizeEncoded * 8;
363 stackSize = subl + 8 * stackAdjust;
432 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount;
531 uint32_t stackSize =
534 uint64_t savedRegisterLoc = registers.getSP() + stackSize;
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.h 169 FT_UInt stackSize; /* size of exec. stack */
  /external/freetype/src/truetype/
ttinterp.h 169 FT_UInt stackSize; /* size of exec. stack */
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttinterp.h 169 FT_UInt stackSize; /* size of exec. stack */
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduComposer.java     [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/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 262 SpillCodeInserter(Function *fn) : func(fn), stackSize(0), stackBase(0) { }
267 inline int32_t getStackSize() const { return stackSize; }
281 int32_t stackSize;
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 262 SpillCodeInserter(Function *fn) : func(fn), stackSize(0), stackBase(0) { }
267 inline int32_t getStackSize() const { return stackSize; }
281 int32_t stackSize;
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
MethodWriter.java 379 * plus <tt>stackSize</tt>.
381 private int stackSize;
388 * block plus <tt>stackSize</tt>.
644 int size = stackSize + Frame.SIZE[opcode];
648 stackSize = size;
667 int size = stackSize + 1;
671 stackSize = size;
692 // save 'stackSize' here for future use
694 currentBlock.inputStackTop = stackSize;
697 int size = stackSize + Frame.SIZE[opcode];
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 740 int stackSize = tracedStack.size();
743 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
    [all...]

Completed in 1144 milliseconds

1 2 3 4