Searched refs:stack (Results 1 - 25 of 51) sorted by relevance
123
/bionic/libc/arch-common/bionic/ |
H A D | crtend_so.S | 30 .section .note.GNU-stack,"",%progbits
|
H A D | crtend.S | 44 .section .note.GNU-stack,"",%progbits
|
/bionic/libc/arch-arm/bionic/ |
H A D | __bionic_clone.S | 34 # 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.S | 46 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 D | syscall.S | 39 PTR_SUBU sp, FRAMESZ # allocate stack frame
|
/bionic/libc/arch-arm64/bionic/ |
H A D | __bionic_clone.S | 34 # 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.S | 33 # 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.S | 39 # set up child stack
|
/bionic/libc/arch-x86/bionic/ |
H A D | __bionic_clone.S | 22 # Copy 'fn' and 'arg' onto the child stack
|
/bionic/libm/x86/ |
H A D | e_hypot.S | 219 .section .note.GNU-stack, ""
|
H A D | e_exp.S | 575 .section .note.GNU-stack, ""
|
H A D | e_log.S | 779 .section .note.GNU-stack, ""
|
H A D | e_log10.S | 794 .section .note.GNU-stack, ""
|
H A D | s_atan.S | 933 .section .note.GNU-stack, ""
|
H A D | s_cbrt.S | 737 .section .note.GNU-stack, ""
|
H A D | s_cos.S | 891 .section .note.GNU-stack, ""
|
H A D | s_sin.S | 906 .section .note.GNU-stack, ""
|
H A D | e_cosh.S | 1348 .section .note.GNU-stack, ""
|
H A D | s_log1p.S | 826 .section .note.GNU-stack, ""
|
H A D | s_tan.S | 1765 .section .note.GNU-stack, ""
|
H A D | s_tanh.S | 1360 .section .note.GNU-stack, ""
|
/bionic/libm/x86_64/ |
H A D | e_hypot.S | 194 .section .note.GNU-stack, ""
|
H A D | e_log.S | 759 .section .note.GNU-stack, ""
|
H A D | e_log10.S | 787 .section .note.GNU-stack, ""
|
/bionic/tests/ |
H A D | pthread_test.cpp | 160 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