Searched refs:stack_guard (Results 1 – 3 of 3) sorted by relevance
114 let stack_guard = unsafe { bionic::TLS.stack_guard }; in check_stack_guard() localVariable115 assert_ne!(stack_guard, 0); in check_stack_guard()117 assert_eq!(stack_guard.to_ne_bytes().last(), Some(&0)); in check_stack_guard()119 assert_eq!(stack_guard, bionic::__get_tls().stack_guard); in check_stack_guard()122 stack_guard, in check_stack_guard()
68 let mut stack_guard = [0u8; SIZE_OF_STACK_GUARD]; in rust_entry() localVariable70 let random_guard = &mut stack_guard[..(SIZE_OF_STACK_GUARD - 1)]; in rust_entry()80 bionic::__get_tls().stack_guard = u64::from_ne_bytes(stack_guard); in rust_entry()
40 pub stack_guard: u64, field51 pub static mut TLS: Tls = Tls { _unused: [0; 40], stack_guard: 0 };