HomeSort by: relevance | last modified time | path
    Searched refs:stack_base (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/lib/libpthread/
pthread_makelwp_netbsd.c 49 void *stack_base, size_t stack_size,
61 uc.uc_stack.ss_sp = stack_base;
66 _lwp_makecontext(&uc, start_routine, arg, priv, stack_base, stack_size);
  /src/lib/libc/arch/aarch64/gen/
_lwp.c 45 void *arg, void *private, caddr_t stack_base, size_t stack_size)
50 u->uc_stack.ss_sp = stack_base;
53 uintptr_t sp = (uintptr_t)stack_base + stack_size;
  /src/lib/libc/arch/arm/gen/
_lwp.c 51 void *arg, void *private, caddr_t stack_base, size_t stack_size)
58 u->uc_stack.ss_sp = stack_base;
61 sp = (uintptr_t)stack_base + stack_size;
  /src/lib/libc/arch/ia64/gen/
_lwp.c 45 void *arg, void *private, caddr_t stack_base, size_t stack_size)
55 u->uc_stack.ss_sp = stack_base;
62 gr[_REG_SP] = ((unsigned long) (stack_base + stack_size)) & ~0x7;
  /src/lib/libc/arch/powerpc64/gen/
_lwp.c 52 void *private, caddr_t stack_base, size_t stack_size)
59 u->uc_stack.ss_sp = stack_base;
62 sp = (void *)(stack_base + stack_size);
  /src/lib/libc/arch/sh3/gen/
_lwp.c 51 void *arg, void *private, caddr_t stack_base, size_t stack_size)
58 u->uc_stack.ss_sp = stack_base;
61 sp = (uintptr_t)stack_base + stack_size;
  /src/lib/libc/arch/i386/gen/
_lwp.c 46 void *arg, void *private, caddr_t stack_base, size_t stack_size)
53 u->uc_stack.ss_sp = stack_base;
61 sp = (void **) (((uintptr_t)(stack_base + stack_size - 4) & ~0xf) + 4);
  /src/lib/libc/arch/x86_64/gen/
_lwp.c 46 void *arg, void *private, caddr_t stack_base, size_t stack_size)
54 u->uc_stack.ss_sp = stack_base;
60 sp = (void **) (((uintptr_t)(stack_base + stack_size) & ~15));
  /src/lib/libc/arch/m68k/gen/
_lwp.c 48 void *arg, void *tcb, caddr_t stack_base, size_t stack_size)
55 u->uc_stack.ss_sp = stack_base;
60 sp = (void **)(void *)(stack_base + stack_size);
  /src/lib/libc/arch/alpha/gen/
_lwp.c 48 void *arg, void *private, caddr_t stack_base, size_t stack_size)
57 u->uc_stack.ss_sp = stack_base;
64 gr[_REG_SP] = ((unsigned long) (stack_base + stack_size)) &
  /src/lib/libc/arch/sparc64/gen/
_lwp.c 43 caddr_t stack_base, size_t stack_size)
53 u->uc_stack.ss_sp = stack_base;
57 sp = (ulong *)(stack_base + stack_size);
  /src/lib/libc/arch/vax/gen/
_lwp.c 46 void *arg, void *private, caddr_t stack_base, size_t stack_size)
54 u->uc_stack.ss_sp = stack_base;
59 sp = (int *)((uintptr_t)(stack_base + stack_size) & ~0x3);
  /src/lib/libc/arch/or1k/gen/
_lwp.c 54 void *tcb, caddr_t stack_base, size_t stack_size)
61 u->uc_stack.ss_sp = stack_base;
64 sp = (uintptr_t)stack_base + stack_size;
  /src/lib/libc/arch/powerpc/gen/
_lwp.c 54 void *tcb, caddr_t stack_base, size_t stack_size)
61 u->uc_stack.ss_sp = stack_base;
64 sp = (uintptr_t)stack_base + stack_size;
  /src/lib/libc/arch/riscv/gen/
_lwp.c 54 void *tcb, caddr_t stack_base, size_t stack_size)
61 u->uc_stack.ss_sp = stack_base;
64 sp = (uintptr_t)stack_base + stack_size;
  /src/lib/libc/arch/sparc/gen/
_lwp.c 45 void *private, caddr_t stack_base, size_t stack_size)
55 u->uc_stack.ss_sp = stack_base;
59 sp = (void *)(stack_base + stack_size);
  /src/lib/libc/arch/hppa/gen/
_lwp.c 50 void *arg, void *private, caddr_t stack_base, size_t stack_size)
61 u->uc_stack.ss_sp = stack_base;
63 sp = stack_base + HPPA_FRAME_SIZE;
  /src/lib/libc/arch/mips/gen/
_lwp.c 56 void *arg, void *tcb, caddr_t stack_base, size_t stack_size)
65 u->uc_stack.ss_sp = stack_base;
67 sp = stack_base + stack_size - CALLFRAME_SIZ;
  /src/tests/lib/libc/sys/
t_futex_robust.c 61 void *stack_base; member in struct:lwp_data
77 lwp_data.stack_base = mmap(NULL, STACK_SIZE,
80 ATF_REQUIRE(lwp_data.stack_base != MAP_FAILED);
82 &lwp_data, NULL, lwp_data.stack_base, STACK_SIZE);
89 if (lwp_data.stack_base != NULL &&
90 lwp_data.stack_base != MAP_FAILED) {
91 (void) munmap(lwp_data.stack_base, STACK_SIZE);
t_fork.c 280 void *stack, *stack_base; local in function:nested_raw
286 stack_base = stack;
288 stack_base = (char *)stack + stack_size;
301 child2 = __clone(clone_func, stack_base, flags, NULL);
t_ptrace_clone_wait.h 46 void *stack, *stack_base; local in function:clone_body
52 stack_base = stack;
54 stack_base = (char *)stack + stack_size;
66 SYSCALL_REQUIRE((child2 = __clone(clone_func, stack_base,
344 void *stack, *stack_base; variable in typeref:typename:void **
350 stack_base = stack;
352 stack_base = (char *)stack + stack_size;
377 SYSCALL_REQUIRE((child2 = __clone(clone_func, stack_base,
691 void *stack, *stack_base; variable in typeref:typename:void **
697 stack_base = stack
    [all...]
t_futex_ops.c 73 void *stack_base; member in struct:lwp_data
161 REQUIRE_LIBC(d->stack_base = mmap(NULL, STACK_SIZE,
165 _lwp_makecontext(&d->context, func, d, NULL, d->stack_base,
267 if (d->stack_base != NULL && d->stack_base != MAP_FAILED) {
268 (void) munmap(d->stack_base, STACK_SIZE);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 206 const char *name, void *stack_base,
210 reinterpret_cast<uptr>(stack_base), stack_size);
asan_rtems.cc 234 void *stack_base, size_t stack_size,
238 reinterpret_cast<uptr>(stack_base), stack_size,
  /src/sys/external/bsd/compiler_rt/dist/lib/safestack/
safestack.cc 154 void *stack_base; member in struct:thread_stack_ll
190 UnmapOrDie(stack->stack_base, stack->size);
199 cur_stack->stack_base = (char *)unsafe_stack_start - unsafe_stack_guard;

Completed in 252 milliseconds

1 2