/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
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...] |
/external/javassist/src/main/javassist/ |
CtClassType.java | 1464 int stacksize = 0; local 1549 int stacksize = makeFieldInitializer(init, params); local 1585 int stacksize = 0; local [all...] |
CtField.java | 998 int stacksize; local 1046 int stacksize = 2; local 1094 int stacksize; local 1139 int stacksize = 1; local [all...] |
/libcore/ojluni/src/main/java/java/util/ |
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...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_linux_test.cc | 220 size_t stacksize; local 221 pthread_attr_getstack(&attr, &stackaddr, &stacksize); 222 return (void *)((uptr)stackaddr + stacksize - descr_addr);
|
/external/llvm/lib/Target/Mips/ |
MipsFrameLowering.cpp | 57 // StackSize ----------- 65 // with offsets that exceeds the stack size: (stacksize+(4*(num_arg-1)) 75 // lw REGX, 16+StackSize(SP)
|
Mips16RegisterInfo.cpp | 81 uint64_t StackSize, 130 Offset = SPOffset + (int64_t)StackSize;
|
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/llvm/lib/Target/XCore/ |
XCoreRegisterInfo.cpp | 275 int StackSize = MF.getFrameInfo()->getStackSize(); 284 DEBUG(errs() << "StackSize : " << StackSize << "\n"); 287 Offset += StackSize;
|
/external/llvm/lib/Target/X86/ |
X86FrameLowering.cpp | [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/pcre/dist/ |
pcre_jit_compile.c | 272 int stacksize; member in struct:bracketpos_backtrack 6859 int stacksize; local 6988 int i, stacksize; local 7531 int stacksize; local 8863 int opcode, stacksize, alt_count, alt_max; local [all...] |
/external/dng_sdk/source/ |
dng_pthread.h | 96 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize); 97 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize);
|
/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;
|
/external/llvm/test/CodeGen/MIR/Mips/ |
memory-operands.mir | 34 stackSize: 24 66 stackSize: 32
|
/external/opencv3/modules/imgproc/src/ |
convhull.cpp | 54 int stacksize = 3; local 89 stack[stacksize] = pnext; 90 stacksize++; 103 stack[stacksize-2] = pnext; 105 pprev = stack[stacksize-4]; 106 stacksize--; 113 stack[stacksize-1] = pnext; 117 return --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;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
cfmfile.py | 116 self.stacksize, 133 self.stacksize,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
cfmfile.py | 116 self.stacksize, 133 self.stacksize,
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64AsmBackend.cpp | 305 uint32_t encodeStackAdjustment(uint32_t StackSize) const { 306 return (StackSize / 16) << 12; 325 unsigned StackSize = 0; 364 assert(StackSize == 0 && "We already have the CFA offset!"); 365 StackSize = std::abs(Inst.getOffset()); 438 if (StackSize > 65520) 442 CompactUnwindEncoding |= encodeStackAdjustment(StackSize);
|
/external/libnfc-nci/halimpl/bcm2079x/gki/common/ |
gki_debug.c | 110 int j, stacksize; local 114 stacksize = (int) gki_cb.com.OSStackSize[task]; 118 for(j = 0; j < stacksize; j++)
|
/external/libnfc-nci/src/gki/common/ |
gki_debug.c | 110 int j, stacksize; local 114 stacksize = (int) gki_cb.com.OSStackSize[task]; 118 for(j = 0; j < stacksize; j++)
|
/prebuilts/go/darwin-x86/src/runtime/ |
os1_linux.go | 156 func newosproc0(stacksize uintptr, fn unsafe.Pointer) { 157 stack := sysAlloc(stacksize, &memstats.stacks_sys) 162 ret := clone(cloneFlags, unsafe.Pointer(uintptr(stack)+stacksize), nil, nil, fn)
|
/prebuilts/go/linux-x86/src/runtime/ |
os1_linux.go | 156 func newosproc0(stacksize uintptr, fn unsafe.Pointer) { 157 stack := sysAlloc(stacksize, &memstats.stacks_sys) 162 ret := clone(cloneFlags, unsafe.Pointer(uintptr(stack)+stacksize), nil, nil, fn)
|