Searched refs:stack (Results 1 - 25 of 51) sorted by relevance

123

/bionic/libc/arch-common/bionic/
H A Dcrtend_so.S30 .section .note.GNU-stack,"",%progbits
H A Dcrtend.S44 .section .note.GNU-stack,"",%progbits
/bionic/libc/arch-arm/bionic/
H A D__bionic_clone.S34 # save registers to parent stack
45 # Push 'fn' and 'arg' onto the child stack.
66 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
/bionic/libc/arch-mips64/bionic/
H A D__bionic_clone.S46 PTR_SUBU sp, FRAMESZ # allocate stack frame
50 # set up child stack
58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack
87 * For O32 etc the child stack must have space for a0..a3 to be stored
88 * For N64 etc, the child stack can be restored to the original value
H A Dsyscall.S39 PTR_SUBU sp, FRAMESZ # allocate stack frame
/bionic/libc/arch-arm64/bionic/
H A D__bionic_clone.S34 # Push 'fn' and 'arg' onto the child stack.
56 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
/bionic/libc/arch-x86_64/bionic/
H A D__bionic_clone.S33 # Copy 'fn' and 'arg' onto the child stack.
66 # with the arguments from the child stack moved into
/bionic/libc/arch-mips/bionic/
H A D__bionic_clone.S39 # set up child stack
/bionic/libc/arch-x86/bionic/
H A D__bionic_clone.S22 # Copy 'fn' and 'arg' onto the child stack
/bionic/libm/x86/
H A De_hypot.S219 .section .note.GNU-stack, ""
H A De_exp.S575 .section .note.GNU-stack, ""
H A De_log.S779 .section .note.GNU-stack, ""
H A De_log10.S794 .section .note.GNU-stack, ""
H A Ds_atan.S933 .section .note.GNU-stack, ""
H A Ds_cbrt.S737 .section .note.GNU-stack, ""
H A Ds_cos.S891 .section .note.GNU-stack, ""
H A Ds_sin.S906 .section .note.GNU-stack, ""
H A De_cosh.S1348 .section .note.GNU-stack, ""
H A Ds_log1p.S826 .section .note.GNU-stack, ""
H A Ds_tan.S1765 .section .note.GNU-stack, ""
H A Ds_tanh.S1360 .section .note.GNU-stack, ""
/bionic/libm/x86_64/
H A De_hypot.S194 .section .note.GNU-stack, ""
H A De_log.S759 .section .note.GNU-stack, ""
H A De_log10.S787 .section .note.GNU-stack, ""
/bionic/tests/
H A Dpthread_test.cpp160 void* stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); local
161 ASSERT_NE(MAP_FAILED, stack);
162 memset(stack, 0xff, stack_size);
166 ASSERT_EQ(0, pthread_attr_setstack(&attr, stack, stack_size));
175 ASSERT_EQ(0, munmap(stack, stack_size));
616 // If the joiner unmapped the thread's stack, that could lead to SIGSEGV in the thread.
619 void* stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0); local
623 pthread_attr_setstack(&a, stack, stack_size);
628 ASSERT_EQ(0, munmap(stack, stack_size));
692 // Get the default stack siz
[all...]

Completed in 340 milliseconds

123