HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 401 - 425 of 965) sorted by null

<<11121314151617181920>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/arm-eabi/lib/ldscripts/
armelf.x 199 .stack 0x80000 :
202 *(.stack)
206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xbn 199 .stack 0x80000 :
202 *(.stack)
206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xc 204 .stack 0x80000 :
207 *(.stack)
211 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xn 199 .stack 0x80000 :
202 *(.stack)
206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xs 192 .stack 0x80000 :
195 *(.stack)
199 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xsc 197 .stack 0x80000 :
200 *(.stack)
204 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xsw 197 .stack 0x80000 :
200 *(.stack)
204 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xw 204 .stack 0x80000 :
207 *(.stack)
211 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/arm-eabi/lib/ldscripts/
armelf.x 199 .stack 0x80000 :
202 *(.stack)
206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xbn 199 .stack 0x80000 :
202 *(.stack)
206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xc 204 .stack 0x80000 :
207 *(.stack)
211 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xn 199 .stack 0x80000 :
202 *(.stack)
206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xs 192 .stack 0x80000 :
195 *(.stack)
199 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xsc 197 .stack 0x80000 :
200 *(.stack)
204 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xsw 197 .stack 0x80000 :
200 *(.stack)
204 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
armelf.xw 204 .stack 0x80000 :
207 *(.stack)
211 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) }
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 138 * Visits each entry of the stack map frames.
148 pos = stack(pos + 2, offset, numStack);
161 * Invoked when <code>stack</code> of <code>stack_map_frame</code>
164 public int stack(int pos, int offset, int num) { method in class:StackMap.Walker
174 * false if it is for <code>stack</code>.
273 * Updates this stack map table when a new local variable is inserted
404 * It is called to update the stack map when
422 public int stack(int pos, int offset, int num) { method in class:StackMap.NewRemover
470 * Prints this stack map.
  /external/mesa3d/src/pixelflinger2/
llvm_helper.h 21 #include <stack>
137 std::stack<BasicBlock *> m_ifStack;
143 std::stack<Loop> m_loopStack;
  /dalvik/vm/arch/x86/
Call386ABI.S 18 * argument list has to be pushed onto the native stack according to
44 The native code expects arguments on the stack, pushed from right to left.
53 Float and double returned on top of FP stack.
177 .section .note.GNU-stack,"",@progbits
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 166 // child process, which operates on a very small stack. Use the
555 // Two utility routines that together determine the direction the stack
576 void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, local
578 GTEST_DEATH_TEST_CHECK(stack != MAP_FAILED);
580 static_cast<char*>(stack) + (stack_grows_down ? stack_size : 0);
585 GTEST_DEATH_TEST_CHECK(munmap(stack, stack_size) != -1);
  /external/javassist/src/main/javassist/
CtBehavior.java 65 // a stack map table is copied from srcInfo.
430 // a stack map table is copied to destInfo.
707 int stack = b.getMaxStack(); local
710 if (stack > ca.getMaxStack())
711 ca.setMaxStack(stack);
1021 int stack = b.getMaxStack(); local
1128 int stack = b.getMaxStack(); local
    [all...]
  /external/kernel-headers/original/asm-arm/
thread_info.h 84 #define init_stack (init_thread_union.stack)
  /external/kernel-headers/original/asm-x86/
thread_info_32.h 22 * - this struct shares the supervisor stack pages
43 unsigned long previous_esp; /* ESP of the previous stack in case
84 #define init_stack (init_thread_union.stack)
87 /* how to get the current stack pointer from C */
  /external/libffi/src/powerpc/
ffi_darwin.c 57 /* ffi_prep_args is called by the assembly routine once stack space
60 The stack layout we want looks like this:
64 | Previous backchain pointer 4 | stack pointer here
71 |--------------------------------------------| | stack |
77 |--------------------------------------------| | stack pointer here
83 void ffi_prep_args(extended_cif *ecif, unsigned *const stack)
89 unsigned *const stacktop = stack + (bytes / sizeof(unsigned));
98 unsigned *next_arg = stack + 6; /* 6 reserved positions. */
109 FFI_ASSERT(((unsigned)(char *)stack & 0xF) == 0);
222 /* Check that we didn't overrun the stack... *
    [all...]
  /external/libffi/src/s390/
ffi.c 156 /* ffi_prep_args is called by the assembly routine once stack space */
162 ffi_prep_args (unsigned char *stack, extended_cif *ecif)
164 /* The stack space will be filled with those areas:
183 unsigned long long *p_fpr = (unsigned long long *)(stack + fpr_off);
184 unsigned long *p_gpr = (unsigned long *)(stack + gpr_off);
186 unsigned long *p_ov = (unsigned long *)stack;
437 go in FPRs, the rest overflow to the stack. */
454 if one is still available, or else on the stack. If only one
471 have been used) or overflows to the stack. */
482 /* Total stack space as required for overflow argument
    [all...]

Completed in 612 milliseconds

<<11121314151617181920>>