HomeSort by relevance Sort by last modified time
    Searched full:newstack (Results 1 - 25 of 45) sorted by null

1 2

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/normal/
MutableStack.java 42 E[] newStack = newArray(argSize);
44 System.arraycopy(stack, 0, newStack, 0, size);
46 for (int i = 0; i < newStack.length; i++) {
47 newStack[i] = newInstance();
49 stack = newStack;
50 size = newStack.length;
  /external/testng/src/main/java/org/testng/
SkipException.java 47 StackTraceElement[] newStack= new StackTraceElement[1];
51 newStack[0]= getStackTrace()[0];
52 setStackTrace(newStack);
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 587 InlineCallStack NewStack;
588 NewStack.push_back(FProfile);
589 NewStack.insert(NewStack.end(), InlineStack.begin(), InlineStack.end());
593 for (auto CallerProfile : NewStack)
637 InlineCallStack NewStack;
638 NewStack.push_back(FProfile);
639 NewStack.insert(NewStack.end(), InlineStack.begin(), InlineStack.end());
640 if (std::error_code EC = readOneFunctionProfile(NewStack, Update, Offset)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 397 ExecutionStack newStack = getStack().copy();
399 newStack.clear();
400 newStack.push(exceptionClass);
402 return new Frame(getLocals(), newStack, subroutines);
  /prebuilts/go/darwin-x86/src/runtime/
stack1.go 665 func newstack() { func
672 print("runtime: newstack called from g=", thisg.m.morebuf.g, "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
675 throw("runtime: wrong goroutine in newstack")
683 print("runtime: newstack sp=", hex(gp.sched.sp), " stack=[", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n",
708 // This check is very early in newstack so that even the status change
725 // The goroutine must be executing in order to call newstack,
731 throw("missing stack in newstack")
739 print("runtime: newstack sp=", hex(sp), " stack=[", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n",
lock_futex.go 116 if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
asm_amd64p32.s 241 // the top of a stack (for example, morestack calling newstack
279 // Call newstack on m->g0's stack.
283 CALL runtime·newstack(SB)
284 MOVL $0, 0x1003 // crash if newstack returns
asm_arm.s 271 // the top of a stack (for example, morestack calling newstack
300 // Call newstack on m->g0's stack.
304 BL runtime·newstack(SB)
306 // Not reached, but make sure the return PC from the call to newstack
asm_arm64.s 263 // the top of a stack (for example, morestack calling newstack
295 // Call newstack on m->g0's stack.
300 BL runtime·newstack(SB)
302 // Not reached, but make sure the return PC from the call to newstack
lock_sema.go 119 if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
trace.go 640 stk := tab.newStack(len(pcs))
672 // newStack allocates a new stack of size n.
673 func (tab *traceStackTable) newStack(n int) *traceStack {
asm_ppc64x.s 262 // the top of a stack (for example, morestack calling newstack
293 // Call newstack on m->g0's stack.
297 BL runtime·newstack(SB)
299 // Not reached, but make sure the return PC from the call to newstack
runtime1.go 432 // restore the preemption request in case we've cleared it in newstack
  /prebuilts/go/linux-x86/src/runtime/
stack1.go 665 func newstack() { func
672 print("runtime: newstack called from g=", thisg.m.morebuf.g, "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
675 throw("runtime: wrong goroutine in newstack")
683 print("runtime: newstack sp=", hex(gp.sched.sp), " stack=[", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n",
708 // This check is very early in newstack so that even the status change
725 // The goroutine must be executing in order to call newstack,
731 throw("missing stack in newstack")
739 print("runtime: newstack sp=", hex(sp), " stack=[", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n",
lock_futex.go 116 if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
asm_amd64p32.s 241 // the top of a stack (for example, morestack calling newstack
279 // Call newstack on m->g0's stack.
283 CALL runtime·newstack(SB)
284 MOVL $0, 0x1003 // crash if newstack returns
asm_arm.s 271 // the top of a stack (for example, morestack calling newstack
300 // Call newstack on m->g0's stack.
304 BL runtime·newstack(SB)
306 // Not reached, but make sure the return PC from the call to newstack
asm_arm64.s 263 // the top of a stack (for example, morestack calling newstack
295 // Call newstack on m->g0's stack.
300 BL runtime·newstack(SB)
302 // Not reached, but make sure the return PC from the call to newstack
lock_sema.go 119 if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
trace.go 640 stk := tab.newStack(len(pcs))
672 // newStack allocates a new stack of size n.
673 func (tab *traceStackTable) newStack(n int) *traceStack {
asm_ppc64x.s 262 // the top of a stack (for example, morestack calling newstack
293 // Call newstack on m->g0's stack.
297 BL runtime·newstack(SB)
299 // Not reached, but make sure the return PC from the call to newstack
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonReader.java 270 int[] newStack = new int[stack.length * 2];
271 System.arraycopy(stack, 0, newStack, 0, stack.length);
272 stack = newStack;
303 int[] newStack = new int[stack.length * 2];
304 System.arraycopy(stack, 0, newStack, 0, stack.length);
305 stack = newStack;
JsonReader.rl 98 int[] newStack = new int[stack.length * 2];
99 System.arraycopy(stack, 0, newStack, 0, stack.length);
100 stack = newStack;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackAnimationHelper.java 563 public void startNewStackScrollAnimation(TaskStack newStack,
569 ArrayList<Task> stackTasks = newStack.getStackTasks();
573 mStackView.setTasks(newStack, false /* allowNotifyStackChanges */);
582 stackLayout.setTaskOverridesForInitialState(newStack, true /* ignoreScrollToFront */);
591 Task frontMostTask = newStack.getStackFrontMostTask(false /* includeFreeform */);
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 467 uptr *newstack = (uptr*)internal_alloc(MBlockShadowStack, local
469 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
471 thr->shadow_stack = newstack;
472 thr->shadow_stack_pos = newstack + sz;
473 thr->shadow_stack_end = newstack + newsz;

Completed in 1107 milliseconds

1 2