/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.cassign/ |
times_value.pass.cpp | 24 T a2[] = {6, 12, 18, 24, 30}; local 27 std::valarray<T> v2(a2, N);
|
xor_value.pass.cpp | 24 T a2[] = { 2, 1, 0, 7, 6}; local 27 std::valarray<T> v2(a2, N);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.binary/ |
and_valarray_value.pass.cpp | 24 T a2[] = { 1, 2, 3, 0, 1}; local 30 assert(v2[i] == a2[i]);
|
and_value_valarray.pass.cpp | 24 T a2[] = { 1, 2, 3, 0, 1}; local 30 assert(v2[i] == a2[i]);
|
divide_valarray_value.pass.cpp | 24 T a2[] = {1, 2, 3, 4, 5}; local 30 assert(v2[i] == a2[i]);
|
divide_value_valarray.pass.cpp | 24 T a2[] = {3, 1, 1, 0, 0}; local 30 assert(v2[i] == a2[i]);
|
minus_valarray_value.pass.cpp | 24 T a2[] = {-2, -1, 0, 1, 2}; local 30 assert(v2[i] == a2[i]);
|
minus_value_valarray.pass.cpp | 24 T a2[] = { 2, 1, 0, -1, -2}; local 30 assert(v2[i] == a2[i]);
|
modulo_valarray_value.pass.cpp | 24 T a2[] = {1, 2, 0, 1, 2}; local 30 assert(v2[i] == a2[i]);
|
modulo_value_valarray.pass.cpp | 24 T a2[] = {0, 1, 0, 3, 3}; local 30 assert(v2[i] == a2[i]);
|
or_valarray_value.pass.cpp | 24 T a2[] = { 3, 3, 3, 7, 7}; local 30 assert(v2[i] == a2[i]);
|
or_value_valarray.pass.cpp | 24 T a2[] = { 3, 3, 3, 7, 7}; local 30 assert(v2[i] == a2[i]);
|
plus_valarray_value.pass.cpp | 24 T a2[] = {4, 5, 6, 7, 8}; local 30 assert(v2[i] == a2[i]);
|
plus_value_valarray.pass.cpp | 24 T a2[] = {4, 5, 6, 7, 8}; local 30 assert(v2[i] == a2[i]);
|
shift_left_valarray_value.pass.cpp | 24 T a2[] = { 8, 16, 24, 32, 40}; local 30 assert(v2[i] == a2[i]);
|
shift_left_value_valarray.pass.cpp | 24 T a2[] = { 6, 12, 24, 48, 96}; local 30 assert(v2[i] == a2[i]);
|
shift_right_valarray_value.pass.cpp | 24 T a2[] = { 1, 2, 3, 4, 5}; local 30 assert(v2[i] == a2[i]);
|
shift_right_value_valarray.pass.cpp | 24 T a2[] = {20, 10, 5, 2, 1}; local 30 assert(v2[i] == a2[i]);
|
times_valarray_value.pass.cpp | 24 T a2[] = {6, 12, 18, 24, 30}; local 30 assert(v2[i] == a2[i]);
|
times_value_valarray.pass.cpp | 24 T a2[] = {6, 12, 18, 24, 30}; local 30 assert(v2[i] == a2[i]);
|
xor_valarray_value.pass.cpp | 24 T a2[] = { 2, 1, 0, 7, 6}; local 30 assert(v2[i] == a2[i]);
|
xor_value_valarray.pass.cpp | 24 T a2[] = { 2, 1, 0, 7, 6}; local 30 assert(v2[i] == a2[i]);
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/xen/ |
hypercall.h | 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 | 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 | 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; })
|