Searched refs:stackSize (Results 1 - 25 of 30) sorted by relevance

12

/external/fonttools/Lib/fontTools/misc/
H A DxmlReader.py23 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
[all...]
/external/fonttools/Tools/fontTools/misc/
H A DxmlReader.py23 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
[all...]
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DStackSizeComputer.java56 private int stackSize; field in class:StackSizeComputer
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
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DDiffer.java21 * @param stackSize The size of the largest difference you expect.
25 public Differ(int stackSize, int matchCount) { argument
26 this.STACKSIZE = stackSize;
28 a = (T[]) new Object[stackSize+matchCount];
29 b = (T[]) new Object[stackSize+matchCount];
/external/icu/icu4c/source/common/
H A Dbytestrieiterator.cpp111 int32_t stackSize=stack_->size(); local
112 int32_t length=stack_->elementAti(stackSize-1);
113 pos=bytes_+stack_->elementAti(stackSize-2);
114 stack_->setSize(stackSize-2);
H A Ducharstrieiterator.cpp110 int32_t stackSize=stack_->size(); local
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/
H A DSparcSubtarget.h87 int getAdjustedFrameSize(int stackSize) const;
H A DSparcRegisterInfo.cpp173 int stackSize = MF.getFrameInfo()->getStackSize(); local
174 Offset += (stackSize) ? Subtarget.getAdjustedFrameSize(stackSize) : 0 ;
/external/libcxxabi/src/Unwind/
H A DCompactUnwinder.hpp130 uint32_t stackSize = stackSizeEncoded * 4; local
134 stackSize = subl + 4 * stackAdjust;
203 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount;
359 uint32_t stackSize = stackSizeEncoded * 8; local
363 stackSize = subl + 8 * stackAdjust;
432 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount;
531 uint32_t stackSize = local
534 uint64_t savedRegisterLoc = registers.getSP() + stackSize;
/external/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp252 uint64_t stackSize = MF.getFrameInfo()->getStackSize(); local
257 << "stackSize : " << stackSize << "\n"); local
259 eliminateFI(MI, FIOperandNum, FrameIndex, stackSize, spOffset);
H A DMipsAsmPrinter.cpp306 unsigned stackSize = MF->getFrameInfo()->getStackSize(); local
308 getTargetStreamer().emitFrame(stackReg, stackSize, returnReg);
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DMethodWriter.java379 * plus <tt>stackSize</tt>.
381 private int stackSize; field in class:MethodWriter
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
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationShrinker.java738 int stackSize = tracedStack.size();
742 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
836 int stackSize = tracedStack.size();
839 for (int stackIndex = stackSize - pushCount; stackIndex < stackSize; stackIndex++)
869 int stackSize = tracedStack.size();
872 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
903 int stackSize
[all...]
H A DSimpleEnumUseChecker.java446 int stackSize = stackBefore.size();
448 for (int stackEntryIndex = 0; stackEntryIndex < stackSize; stackEntryIndex++)
/external/freetype/src/truetype/
H A Dttinterp.h161 FT_Long stackSize; /* size of exec. stack */ member in struct:TT_ExecContextRec_
H A Dttinterp.c261 exec->stackSize = 0;
316 exec->stackSize = 0;
455 tmp = (FT_ULong)exec->stackSize;
461 exec->stackSize = (FT_Long)tmp;
4120 if ( BOUNDS( L, exc->stackSize + 1 - exc->top ) )
4148 if ( BOUNDS( L, exc->stackSize + 1 - exc->top ) )
4179 if ( BOUNDS( L, exc->stackSize + 1 - exc->top ) )
4205 if ( BOUNDS( L, exc->stackSize + 1 - exc->top ) )
7619 if ( exc->new_top > exc->stackSize )
/external/pdfium/third_party/freetype/src/truetype/
H A Dttinterp.h173 FT_UInt stackSize; /* size of exec. stack */ member in struct:TT_ExecContextRec_
H A Dttinterp.c400 exec->stackSize = 0;
455 exec->stackSize = 0;
594 tmp = exec->stackSize;
600 exec->stackSize = (FT_UInt)tmp;
5156 if ( BOUNDS( L, CUR.stackSize + 1 - CUR.top ) )
5183 if ( BOUNDS( L, CUR.stackSize + 1 - CUR.top ) )
5213 if ( BOUNDS( L, CUR.stackSize + 1 - CUR.top ) )
5238 if ( BOUNDS( L, CUR.stackSize + 1 - CUR.top ) )
8304 if ( CUR.new_top > CUR.stackSize )
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ra.cpp262 SpillCodeInserter(Function *fn) : func(fn), stackSize(0), stackBase(0) { }
267 inline int32_t getStackSize() const { return stackSize; }
281 int32_t stackSize; member in class:nv50_ir::SpillCodeInserter
1390 int32_t offsetBase = stackSize;
1399 for (offset = offsetBase; offset < stackSize; offset += size) {
1423 stackSize = offset + size;
1526 stackBase = stackSize;
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.cpp699 int stackSize = 0;
726 if (stackSize++ == 0)
749 if (stackSize != 0 && !stackBottomFound)
751 stackSize++;
756 if (stackSize == 0)
784 DE_ASSERT(stackSize);
787 const int thresholdRed = stackSize - 1;
788 const int thresholdGreen = stackSize - 1;
789 const int thresholdBlue = stackSize - 1;
/external/icu/icu4c/source/i18n/
H A Drematch.cpp3812 int32_t stackSize = fStack->size();
3814 U_ASSERT(stackSize >= newStackSize);
3815 if (stackSize > newStackSize) {
5324 int32_t stackSize = fStack->size();
5326 U_ASSERT(stackSize >= newStackSize);
5327 if (stackSize > newStackSize) {
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/optimize/WriteOnlyFieldFilter.class WriteOnlyFieldFilter.java package proguard ...

Completed in 1209 milliseconds

12