Home
last modified time | relevance | path

Searched refs:stackSize (Results 1 – 25 of 259) sorted by relevance

1234567891011

/external/fonttools/Lib/fontTools/misc/
DxmlReader.py39 self.stackSize = 0
43 self.stackSize += 1
53 self.stackSize -= 1
77 if self.stackSize == 1 and self.contentOnly:
82 self.stackSize = 2
84 stackSize = self.stackSize
85 self.stackSize = stackSize + 1
95 if not stackSize:
104 elif stackSize == 1:
131 elif stackSize == 2 and subFile is not None:
[all …]
/external/proguard/src/proguard/classfile/attribute/visitor/
DStackSizeComputer.java56 private int stackSize; field in StackSizeComputer
149 stackSize = 0; in visitCodeAttribute0()
209 stackSize -= 1; in visitBranchInstruction()
263 stackSize = 1; in visitExceptionInfo()
300 int initialStackSize = stackSize; in evaluateInstructionBlock()
303 if (maxStackSize < stackSize) in evaluateInstructionBlock()
305 maxStackSize = stackSize; in evaluateInstructionBlock()
322 stackSize+" - "+ in evaluateInstructionBlock()
325 (stackSize+stackPushCount-stackPopCount)+": "+ in evaluateInstructionBlock()
330 stackSize -= instruction.stackPopCount(clazz); in evaluateInstructionBlock()
[all …]
/external/freetype/src/psaux/
Dpsstack.c55 FT_UInt stackSize ) in cf2_stack_init() argument
70 if ( FT_NEW_ARRAY( stack->buffer, stackSize ) ) in cf2_stack_init()
76 stack->stackSize = stackSize; in cf2_stack_init()
110 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushInt()
126 if ( stack->top == stack->buffer + stack->stackSize ) in cf2_stack_pushFixed()
190 FT_ASSERT( cf2_stack_count( stack ) <= stack->stackSize ); in cf2_stack_getReal()
Dpsstack.h67 FT_UInt stackSize; member
75 FT_UInt stackSize );
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/
DStacktraces.kt39 var stackSize = -1 in normalizeStackTrace() variable
42 stack[++stackSize] = c in normalizeStackTrace()
44 --stackSize in normalizeStackTrace()
47 return String(stack, 0, stackSize) in normalizeStackTrace()
/external/swiftshader/third_party/marl/src/
Dosfiber_asm.h75 size_t stackSize,
108 size_t stackSize, in createFiber() argument
111 request.size = stackSize; in createFiber()
122 marl_fiber_set_target(&out->context, out->stack.ptr, stackSize, in createFiber()
Dosfiber_ucontext.h51 size_t stackSize,
83 size_t stackSize, in createFiber() argument
105 request.size = stackSize; in createFiber()
121 out->context.uc_stack.ss_size = stackSize; in createFiber()
Dosfiber_windows.h40 size_t stackSize,
77 size_t stackSize, in createFiber() argument
80 out->fiber = CreateFiber(stackSize, &OSFiber::run, out.get()); in createFiber()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
DleaFixup64.mir168 stackSize: 0
203 stackSize: 0
238 stackSize: 0
272 stackSize: 0
307 stackSize: 0
342 stackSize: 0
377 stackSize: 0
413 stackSize: 0
449 stackSize: 0
484 stackSize: 0
[all …]
DleaFixup32.mir95 stackSize: 0
130 stackSize: 0
165 stackSize: 0
200 stackSize: 0
236 stackSize: 0
272 stackSize: 0
306 stackSize: 0
342 stackSize: 0
377 stackSize: 0
412 stackSize: 0
[all …]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DIntDiffer.java26 public IntDiffer(int stackSize, int matchCount) { in IntDiffer() argument
27 this.STACKSIZE = stackSize; in IntDiffer()
29 a = new int[stackSize+matchCount]; in IntDiffer()
30 b = new int[stackSize+matchCount]; in IntDiffer()
/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/
DStracktraceUtils.kt19 var stackSize = -1 in <lambda>() variable
22 stack[++stackSize] = c in <lambda>()
24 --stackSize in <lambda>()
28 return String(stack, 0, stackSize + 1) in <lambda>()
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DUnmanagedLibrary.cs83 for (int stackSize = 0; stackSize < 128; stackSize += 4) in LoadSymbol()
85 … IntPtr candidate = Windows.GetProcAddress(this.handle, symbolName + stackSize); in LoadSymbol()
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemStackTests.cpp61 deUint32 stackSize; member
66 : stackSize (stackSize_) in Params()
72 while (imageWidth * imageHeight < stackSize) in Params()
86 return deInt32Hash(params.stackSize); in getSeedValue()
154 "vec4 protectedData[" + de::toString(m_params.stackSize) + "];\n" in initPrograms()
158 " vec4 localData[" + de::toString(m_params.stackSize) + "];\n" in initPrograms()
159 " for (int i = 0; i < " + de::toString(m_params.stackSize) + "; i++)\n" in initPrograms()
170 " const int n = " + de::toString(m_params.stackSize) + ";\n" in initPrograms()
/external/cldr/tools/java/org/unicode/cldr/util/
DDiffer.java22 public Differ(int stackSize, int matchCount) { in Differ() argument
23 this.STACKSIZE = stackSize; in Differ()
25 a = (T[]) new Object[stackSize + matchCount]; in Differ()
26 b = (T[]) new Object[stackSize + matchCount]; in Differ()
/external/cldr/tools/java/org/unicode/cldr/draft/
DStateMachine.java59 private int stackSize = 0; field in StateMachine.StateObjectBuilder
62 stateStack[stackSize++] = state; in push()
66 return stateStack[--stackSize]; in pop()
88 for (int i = stackSize - 1; i >= 0; --i) { in toString()
89 if (i != stackSize - 1) { in toString()
/external/icu/icu4c/source/common/
Ducharstrieiterator.cpp112 int32_t stackSize=stack_->size(); in next() local
113 int32_t length=stack_->elementAti(stackSize-1); in next()
114 pos=uchars_+stack_->elementAti(stackSize-2); in next()
115 stack_->setSize(stackSize-2); in next()
Dbytestrieiterator.cpp113 int32_t stackSize=stack_->size(); in next() local
114 int32_t length=stack_->elementAti(stackSize-1); in next()
115 pos=bytes_+stack_->elementAti(stackSize-2); in next()
116 stack_->setSize(stackSize-2); in next()
/external/llvm/test/CodeGen/MIR/Generic/
Dframe-info.mir34 # CHECK-NEXT: stackSize: 0
61 # CHECK-NEXT: stackSize: 4
77 stackSize: 4
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/MIR/Generic/
Dframe-info.mir33 # CHECK-NEXT: stackSize: 0
63 # CHECK-NEXT: stackSize: 4
80 stackSize: 4
/external/freetype/src/cff/
Dcffparse.h61 FT_UInt stackSize; /* allocated size */ member
85 FT_UInt stackSize,
/external/libunwind_llvm/src/
DCompactUnwinder.hpp129 uint32_t stackSize = stackSizeEncoded * 4; in stepWithCompactEncodingFrameless() local
133 stackSize = subl + 4 * stackAdjust; in stepWithCompactEncodingFrameless()
202 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount; in stepWithCompactEncodingFrameless()
360 uint32_t stackSize = stackSizeEncoded * 8; in stepWithCompactEncodingFrameless() local
364 stackSize = subl + 8 * stackAdjust; in stepWithCompactEncodingFrameless()
433 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount; in stepWithCompactEncodingFrameless()
534 uint32_t stackSize = in stepWithCompactEncodingFrameless() local
537 uint64_t savedRegisterLoc = registers.getSP() + stackSize; in stepWithCompactEncodingFrameless()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dconvert-rr-to-ri-instrs-out-of-range.mir235 stackSize: 0
285 stackSize: 0
341 stackSize: 0
404 stackSize: 0
463 stackSize: 0
521 stackSize: 0
583 stackSize: 0
641 stackSize: 0
700 stackSize: 0
758 stackSize: 0
[all …]
Dconvert-rr-to-ri-instrs.mir1029 stackSize: 0
1085 stackSize: 0
1145 stackSize: 0
1206 stackSize: 0
1265 stackSize: 0
1320 stackSize: 0
1370 stackSize: 0
1424 stackSize: 0
1479 stackSize: 0
1533 stackSize: 0
[all …]
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java738 int stackSize = tracedStack.size(); in visitAnyInstruction() local
742 … for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++) in visitAnyInstruction()
836 int stackSize = tracedStack.size(); in visitAnyInstruction() local
839 … for (int stackIndex = stackSize - pushCount; stackIndex < stackSize; stackIndex++) in visitAnyInstruction()
869 int stackSize = tracedStack.size(); in visitAnyInstruction() local
872 … for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++) in visitAnyInstruction()
903 int stackSize = tracedStack.size(); in visitAnyInstruction() local
906 … for (int stackIndex = stackSize - pushCount; stackIndex < stackSize; stackIndex++) in visitAnyInstruction()
1540 int stackSize = tracedStack.size(); in markStackProducers() local
1544 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++) in markStackProducers()

1234567891011