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

1 2 3 4 5 6

  /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...]
  /external/fonttools/Lib/fontTools/misc/
xmlReader.py 23 self.stackSize = 0
52 stackSize = self.stackSize
53 self.stackSize = stackSize + 1
54 if not stackSize:
63 elif stackSize == 1:
96 elif stackSize == 2:
105 if self.stackSize > 1:
109 self.stackSize = self.stackSize -
    [all...]
  /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/icu/android_icu4j/src/main/java/android/icu/impl/
Differ.java 23 * @param stackSize The size of the largest difference you expect.
27 public Differ(int stackSize, int matchCount) {
28 this.STACKSIZE = stackSize;
30 a = (T[]) new Object[stackSize+matchCount];
31 b = (T[]) new Object[stackSize+matchCount];
115 if (aCount >= STACKSIZE || bCount >= STACKSIZE) {
161 private int STACKSIZE;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Differ.java 21 * @param stackSize The size of the largest difference you expect.
25 public Differ(int stackSize, int matchCount) {
26 this.STACKSIZE = stackSize;
28 a = (T[]) new Object[stackSize+matchCount];
29 b = (T[]) new Object[stackSize+matchCount];
113 if (aCount >= STACKSIZE || bCount >= STACKSIZE) {
159 private int STACKSIZE;
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
ComparableTimSort.java 62 private int stackSize = 0; // Number of pending runs on stack
77 stackSize = 0;
118 if (DEBUG) assert stackSize == 1;
197 if (DEBUG) assert ts.stackSize == 1;
333 this.runBase[stackSize] = runBase;
334 this.runLen[stackSize] = runLen;
335 stackSize++;
343 * stackSize upon entry to the method. */
345 while (stackSize > 1) {
346 int n = stackSize - 2;
    [all...]
TimSort.java 82 private int stackSize = 0; // Number of pending runs on stack
97 stackSize = 0;
139 if (DEBUG) assert stackSize == 1;
226 if (DEBUG) assert ts.stackSize == 1;
362 this.runBase[stackSize] = runBase;
363 this.runLen[stackSize] = runLen;
364 stackSize++;
378 * stackSize upon entry to the method. */
380 while (stackSize > 1) {
381 int n = stackSize - 2;
    [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 */
  /libcore/ojluni/src/main/java/java/util/
ComparableTimSort.java 108 private int stackSize = 0; // Number of pending runs on stack
219 assert ts.stackSize == 1;
378 this.runBase[stackSize] = runBase;
379 this.runLen[stackSize] = runLen;
380 stackSize++;
391 * so the invariants are guaranteed to hold for i < stackSize upon
395 while (stackSize > 1) {
396 int n = stackSize - 2;
414 while (stackSize > 1) {
415 int n = stackSize - 2
    [all...]
TimSort.java 133 private int stackSize = 0; // Number of pending runs on stack
251 assert ts.stackSize == 1;
413 this.runBase[stackSize] = runBase;
414 this.runLen[stackSize] = runLen;
415 stackSize++;
426 * so the invariants are guaranteed to hold for i < stackSize upon
430 while (stackSize > 1) {
431 int n = stackSize - 2;
449 while (stackSize > 1) {
450 int n = stackSize - 2
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Thread.java 203 private long stackSize;
394 * @param stackSize the desired stack size for the new thread, or
397 private void init(ThreadGroup g, Runnable target, String name, long stackSize) {
414 this.stackSize = stackSize;
626 * {@code stackSize} parameter, if any, is highly platform dependent.</b>
629 * {@code stackSize} parameter may allow a thread to achieve greater
634 * the relationship between the value of the <tt>stackSize</tt> parameter
637 * {@code stackSize} parameter may have no effect whatsoever.</b>
639 * <p>The virtual machine is free to treat the {@code stackSize}
    [all...]
  /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);
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.h 89 int getAdjustedFrameSize(int stackSize) const;
  /external/opencv3/modules/core/src/
cuda_stream.cpp 121 void initialize(size_t stackSize, int stackCount);
148 void MemoryPool::initialize(size_t stackSize, int stackCount)
154 stackSize_ = stackSize;
631 void cv::cuda::setBufferPoolConfig(int deviceId, size_t stackSize, int stackCount)
635 (void)stackSize;
644 initializer.getMemoryPool(deviceId)->initialize(stackSize, stackCount);
653 initializer.getMemoryPool(deviceId)->initialize(stackSize, stackCount);
  /external/libunwind_llvm/src/
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;
  /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/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...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduComposer.java     [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduComposer.java     [all...]
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 272 uint64_t stackSize = MF.getFrameInfo()->getStackSize();
277 << "stackSize : " << stackSize << "\n");
279 eliminateFI(MI, FIOperandNum, FrameIndex, stackSize, spOffset);
  /toolchain/binutils/binutils-2.25/include/nlm/
internal.h 159 /* The stackSize field contains the size of the stack in bytes, as
160 specified by the STACK or STACKSIZE keyword in NLMLINK. If no size
163 long stackSize;
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 738 int stackSize = tracedStack.size();
742 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
    [all...]

Completed in 2016 milliseconds

1 2 3 4 5 6