/external/llvm/test/Transforms/SROA/ |
fca.ll | 28 ; split the volatile load and store here but must produce volatile scalar loads 33 ; CHECK: load volatile { i32, i32 }* 34 ; CHECK: store volatile { i32, i32 } 46 %result = load volatile { i32, i32 }* %a 47 store volatile { i32, i32 } %result, { i32, i32 }* %b
|
/external/valgrind/main/none/tests/amd64/ |
asorep.c | 19 asm volatile ("addr32 rep movsb" 30 asm volatile ("addr32 rep stosw" 40 asm volatile ("addr32 lodsl" 49 asm volatile ("addr32 repe cmpsb" 59 asm volatile ("addr32 repne scasw" 68 asm volatile ("addr32 repe scasw"
|
/external/valgrind/main/none/tests/s390x/ |
svc.h | 12 asm volatile( "svc 0\n" 26 asm volatile( "svc 0\n" 41 asm volatile( "svc 0\n" 58 asm volatile( "svc 0\n" 77 asm volatile( "svc 0\n" 98 asm volatile( "svc 0\n"
|
tm.c | 7 asm volatile( "brc 8,1f\n\t" \ 50 asm volatile( "tm %[v],15\n\t" : : [v] "R"(v) : "cc"); 55 asm volatile( "tm %[v],0\n\t" : : [v] "R"(v) : "cc"); 60 asm volatile( "tm %[v],0xf0\n\t" : : [v] "R"(v) : "cc"); 65 asm volatile( "tm %[v],0x70\n\t" : : [v] "R"(v) : "cc"); 70 asm volatile( "tm %[v],0x81\n\t" : : [v] "R"(v) : "cc");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/ |
min.pass.cpp | 28 assert(std::numeric_limits<volatile T>::min() == expected); 29 assert(std::numeric_limits<volatile T>::is_bounded || !std::numeric_limits<volatile T>::is_signed); 30 assert(std::numeric_limits<const volatile T>::min() == expected); 31 assert(std::numeric_limits<const volatile T>::is_bounded || !std::numeric_limits<const volatile T>::is_signed);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
is_array.hpp | 38 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T volatile[N],true) 39 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const volatile[N],true) 43 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T volatile[],true) 44 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T const volatile[],true) 77 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_array,void volatile,false) 78 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_array,void const volatile,false)
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/xen/ |
hypercall.h | 22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4), "=D" (__ign5) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), "5" ((long)(a5)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/xen/ |
hypercall.h | 22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4), "=D" (__ign5) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), "5" ((long)(a5)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/xen/ |
hypercall.h | 22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4), "=D" (__ign5) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), "5" ((long)(a5)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
|
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/xen/ |
hypercall.h | 22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4), "=D" (__ign5) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), "5" ((long)(a5)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/xen/ |
hypercall.h | 22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }) 32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2), "=d" (__ign3), "=S" (__ign4), "=D" (__ign5) : "1" ((long)(a1)), "2" ((long)(a2)), "3" ((long)(a3)), "4" ((long)(a4)), "5" ((long)(a5)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/sys/ |
atomics.h | 50 __atomic_cmpxchg(int old, int _new, volatile int *ptr) 57 __atomic_swap(int _new, volatile int *ptr) 67 __atomic_dec(volatile int *ptr) 73 __atomic_inc(volatile int *ptr) 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 80 int __futex_wake(volatile void *ftx, int count);
|