HomeSort by relevance Sort by last modified time
    Searched full:stacksize (Results 151 - 175 of 405) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/Target/NVPTX/
NVPTXPrologEpilogPass.cpp 226 int64_t StackSize = Offset - LocalAreaOffset;
227 MFI->setStackSize(StackSize);
  /external/valgrind/none/tests/
cmdline1.stdout.exp 54 --main-stacksize=<number> set size of main thread's stack (in bytes)
110 --valgrind-stacksize=<number> size of valgrind (host) thread's stack
cmdline2.stdout.exp 54 --main-stacksize=<number> set size of main thread's stack (in bytes)
110 --valgrind-stacksize=<number> size of valgrind (host) thread's stack
  /external/valgrind/coregrind/m_initimg/
initimg-linux.c 407 unsigned stacksize; /* total client stack size */ local
471 stacksize =
481 if (0) VG_(printf)("stacksize = %u\n", stacksize);
484 client_SP = clstack_end - stacksize;
497 VG_(printf)("stringsize=%u auxsize=%u stacksize=%u maxsize=0x%lx\n"
500 stringsize, auxsize, stacksize, clstack_max_size,
566 "This may be the result of a very large --main-stacksize=\n");
947 notice of the --main-stacksize value. This makes it possible
949 simply by specifying --main-stacksize. *
    [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...]
  /art/runtime/
parsed_options_test.cc 90 EXPECT_PARSED_EQ(1 * MB, Opt::StackSize);
runtime_options.def 57 RUNTIME_OPTIONS_KEY (Memory<1>, StackSize) // -Xss
  /external/llvm/test/CodeGen/MIR/X86/
used-physical-register-info.mir 43 stackSize: 8
  /external/llvm/test/CodeGen/PowerPC/
addisdtprelha-nonr3.mir 38 stackSize: 64
aantidep-def-ec.mir 75 stackSize: 144
  /external/valgrind/memcheck/tests/
addressable.stderr.exp 29 main thread stack using the --main-stacksize= flag.
  /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 */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndrtypes.h 97 unsigned short StackSize;
  /prebuilts/go/darwin-x86/src/runtime/
rt0_linux_arm.s 38 MOVW $0x800000, R0 // stacksize = 8192KB
  /prebuilts/go/linux-x86/src/runtime/
rt0_linux_arm.s 38 MOVW $0x800000, R0 // stacksize = 8192KB
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 209 ** stacksize - (input) size of the stack allocated for the task
218 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
229 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize);
301 stacksize);
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 206 ** stacksize - (input) size of the stack allocated for the task
215 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
226 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize);
298 stacksize);
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 57 void MipsTargetStreamer::emitFrame(unsigned StackReg, unsigned StackSize,
217 void MipsTargetAsmStreamer::emitFrame(unsigned StackReg, unsigned StackSize,
221 << StackSize << ",$"
713 void MipsTargetELFStreamer::emitFrame(unsigned StackReg, unsigned StackSize,
720 FrameOffset = StackSize;
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 227 uint64_t StackSize = MFI->getStackSize();
228 if (WarnStackSize.getNumOccurrences() > 0 && WarnStackSize < StackSize) {
229 DiagnosticInfoStackSize DiagStackSize(*F, StackSize);
764 int64_t StackSize = Offset - LocalAreaOffset;
765 MFI->setStackSize(StackSize);
766 NumBytesStackSpace += StackSize;
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyPEI.cpp 243 uint64_t StackSize = MFI->getStackSize();
244 if (WarnStackSize.getNumOccurrences() > 0 && WarnStackSize < StackSize) {
245 DiagnosticInfoStackSize DiagStackSize(*F, StackSize);
780 int64_t StackSize = Offset - LocalAreaOffset;
781 MFI->setStackSize(StackSize);
782 NumBytesStackSpace += StackSize;
    [all...]
  /external/v8/src/runtime/
runtime-test.cc 413 static int StackSize(Isolate* isolate) {
424 int n = StackSize(isolate);
  /external/freetype/src/truetype/
ttinterp.h 161 FT_Long stackSize; /* size of exec. stack */
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2World.cpp 414 int32 stackSize = m_bodyCount;
415 b2Body** stack = (b2Body**)m_stackAllocator.Allocate(stackSize * sizeof(b2Body*));
495 b2Assert(stackCount < stackSize);
524 b2Assert(stackCount < stackSize);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
ttinterp.h 161 FT_Long stackSize; /* size of exec. stack */

Completed in 644 milliseconds

1 2 3 4 5 67 8 91011>>