/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))
|
/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...] |
/external/llvm/lib/Target/Mips/ |
Mips16RegisterInfo.h | 42 int FrameIndex, uint64_t StackSize,
|
MipsSERegisterInfo.h | 35 int FrameIndex, uint64_t StackSize,
|
MipsTargetStreamer.h | 50 virtual void emitFrame(unsigned StackReg, unsigned StackSize, 165 void emitFrame(unsigned StackReg, unsigned StackSize, 242 void emitFrame(unsigned StackReg, unsigned StackSize,
|
/external/llvm/test/CodeGen/MIR/Mips/ |
expected-global-value-or-symbol-after-call-entry.mir | 17 stackSize: 24
|
/external/llvm/test/CodeGen/MIR/X86/ |
cfi-offset.mir | 24 stackSize: 8
|
early-clobber-register-flag.mir | 28 stackSize: 8
|
expected-comma-after-cfi-register.mir | 22 stackSize: 8
|
expected-register-after-cfi-operand.mir | 22 stackSize: 8
|
fixed-stack-memory-operands.mir | 23 stackSize: 4
|
liveout-register-mask.mir | 24 stackSize: 8
|
variable-sized-stack-objects.mir | 22 stackSize: 24
|
/external/llvm/test/CodeGen/X86/ |
patchpoint-verifiable.mir | 24 stackSize: 8
|
/prebuilts/go/darwin-x86/src/runtime/ |
rt0_darwin_arm.s | 35 MOVW R0, (R13) // stacksize
|
rt0_linux_386.s | 42 MOVL $0x800000, 0(SP) // stacksize = 8192KB
|
rt0_linux_amd64.s | 36 MOVQ $8388608, 0(SP) // stacksize
|
/prebuilts/go/linux-x86/src/runtime/ |
rt0_darwin_arm.s | 35 MOVW R0, (R13) // stacksize
|
rt0_linux_386.s | 42 MOVL $0x800000, 0(SP) // stacksize = 8192KB
|
rt0_linux_amd64.s | 36 MOVQ $8388608, 0(SP) // stacksize
|
/external/dng_sdk/source/ |
dng_pthread.cpp | 250 size_t stacksize; member in struct:dng_pthread_attr_impl 263 newAttrs->stacksize = 0; 286 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize) 291 (*attr)->stacksize = stacksize; 298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize) 300 if (attr == NULL || (*attr) == NULL || stacksize == NULL) 303 *stacksize = (*attr)->stacksize; 325 size_t stacksize = 0 local [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZFrameLowering.cpp | 354 uint64_t StackSize = getAllocatedStackSize(MF); 355 if (StackSize) { 356 // Allocate StackSize bytes. 357 int64_t Delta = -int64_t(StackSize); 428 uint64_t StackSize = getAllocatedStackSize(MF); 437 uint64_t Offset = StackSize + MBBI->getOperand(AddrOpNo + 1).getImm(); 453 } else if (StackSize) { 455 emitIncrement(MBB, MBBI, DL, SystemZ::R15D, StackSize, ZII); 494 uint64_t StackSize = MFFrame->getStackSize(); 499 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls() [all...] |
/external/valgrind/memcheck/tests/solaris/ |
thr_daemon_exit_standalone.c | 93 static void *allocate_stack(size_t stacksize) { 111 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap) 126 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap)
|
/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/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...] |