Lines Matching defs:stack2
312 char *stack1, *stack2;
317 REQUIRE_LIBC(stack2 = malloc(SIGSTKSZ + STACK_ALIGNBYTES), NULL);
318 fprintf(stderr, "stack2 @ [%p,%p)\n",
319 stack2, stack2 + SIGSTKSZ + STACK_ALIGNBYTES);
332 uc2.uc_stack.ss_sp = stack2;
340 ATF_CHECK_MSG((uintptr_t)stack2 <= (uintptr_t)contextsp &&
341 (uintptr_t)contextsp <= (uintptr_t)stack2 + SIGSTKSZ + i,
359 uc2.uc_stack.ss_sp = stack2 + i;
367 ATF_CHECK_MSG((uintptr_t)stack2 + i <= (uintptr_t)contextsp &&
368 (uintptr_t)contextsp <= (uintptr_t)stack2 + SIGSTKSZ + i,