HomeSort by: relevance | last modified time | path
    Searched defs:stack (Results 1 - 25 of 430) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/ia64/stand/ia64/ski/
start.S 44 add r2=@gprel(stack),gp
64 stack: .skip STACKSIZE label
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag_standalone.cc 31 BufferedStackTrace stack; local
32 stack.Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom,
34 stack.Print();
  /src/external/gpl3/gcc/dist/libgcc/config/nvptx/
crt0.c 27 /* Always setup soft stacks to allow testing with -msoft-stack but without
46 static char stack[131072] __attribute__((aligned(8))); local
47 __nvptx_stacks[0] = stack + sizeof stack;
  /src/external/gpl3/gcc.old/dist/libgcc/config/nvptx/
crt0.c 27 /* Always setup soft stacks to allow testing with -msoft-stack but without
46 static char stack[131072] __attribute__((aligned(8))); local
47 __nvptx_stacks[0] = stack + sizeof stack;
  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
clone3.c 33 long stack[16384]; local
35 pid = clone (process, (char *) stack + sizeof (stack) - 64,
clone5.c 28 long stack[16384]; local
30 retcode = clone (process, (char *) stack + sizeof (stack) - 64, 0, "cba");
clone4.c 36 char *stack = malloc (stacksize); local
37 if (stack == NULL)
40 pid = clone (process, (char *) stack + stacksize - 64,
clone1.c 36 long stack[16384]; local
47 pid = clone (process, (char *) stack + sizeof (stack) - 64,
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
clone3.c 33 long stack[16384]; local
35 pid = clone (process, (char *) stack + sizeof (stack) - 64,
clone5.c 28 long stack[16384]; local
30 retcode = clone (process, (char *) stack + sizeof (stack) - 64, 0, "cba");
clone4.c 36 char *stack = malloc (stacksize); local
37 if (stack == NULL)
40 pid = clone (process, (char *) stack + stacksize - 64,
clone1.c 36 long stack[16384]; local
47 pid = clone (process, (char *) stack + sizeof (stack) - 64,
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_stack_test.cc 23 uptr stack[128]; local
24 thr.shadow_stack = &stack[0];
25 thr.shadow_stack_pos = &stack[0];
26 thr.shadow_stack_end = &stack[128];
53 uptr stack[kShadowStackSize]; local
54 thr.shadow_stack = &stack[0];
55 thr.shadow_stack_pos = &stack[0];
56 thr.shadow_stack_end = &stack[kShadowStackSize];
tsan_shadow_test.cc 51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag_standalone.cpp 32 BufferedStackTrace stack; local
33 stack.Unwind(pc, bp, nullptr, common_flags()->fast_unwind_on_fatal);
34 stack.Print();
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-evrp-analyze.h 29 stack.release ();
51 /* STACK holds the old VR. */
52 auto_vec<std::pair <tree, value_range_equiv *> > stack; member in class:evrp_range_analyzer
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag_standalone.cpp 32 BufferedStackTrace stack; local
33 stack.Unwind(pc, bp, nullptr, common_flags()->fast_unwind_on_fatal);
34 stack.Print();
  /src/external/mit/libcbor/dist/src/cbor/internal/
builder_callbacks.h 13 #include "stack.h"
23 /** Stack expectation mismatch */
26 struct _cbor_stack *stack; member in struct:_cbor_decoder_context
  /src/lib/libexecinfo/
builtin.c 58 void *stack = &stack; local
61 if ((const void *)frame BELOW stack)
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_benchmarks_test.cc 73 int stack[1000]; local
74 Ident(stack);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_mem.c 56 u8 stack[128]; local
63 if (sizeof(*args) + argc > sizeof(stack)) {
67 args = (void *)stack;
84 if (args != (void *)stack)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
clone-attach-detach.c 43 unsigned char *stack; local
48 stack = malloc (STACK_SIZE);
49 assert (stack != NULL);
54 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_FLAGS, NULL);
56 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_FLAGS, NULL);
clone-thread_db.c 43 unsigned char *stack; local
46 stack = malloc (STACK_SIZE);
47 assert (stack != NULL);
50 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_VM, NULL);
52 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_VM, NULL);
  /src/external/gpl3/gdb.old/dist/gdbsupport/
alt-stack.h 1 /* Temporarily install an alternate signal stack
28 /* Try to set up an alternate signal stack for SIGSEGV handlers.
30 normal process stack is exhausted. If this stack is not set
32 generated when the normal stack is exhausted then the program
42 stack_t stack; local
43 stack.ss_sp = m_stack.get ();
44 stack.ss_size = SIGSTKSZ;
45 stack.ss_flags = 0;
47 sigaltstack (&stack, &m_old_stack)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
clone-attach-detach.c 43 unsigned char *stack; local
48 stack = malloc (STACK_SIZE);
49 assert (stack != NULL);
54 clone_pid = __clone2 (clone_fn, stack, STACK_SIZE, CLONE_FLAGS, NULL);
56 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_FLAGS, NULL);

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>