Home
last modified time | relevance | path

Searched refs:f2 (Results 1 – 25 of 1611) sorted by relevance

12345678910>>...65

/external/valgrind/none/tests/mips64/
Dmove_instructions.c246 TEST4("movn.s $f0, $f2, $11", 0, 0, f0, f2, 11); in main()
247 TEST4("movn.s $f0, $f2, $11", 0, 1, f0, f2, 11); in main()
248 TEST4("movn.s $f0, $f2, $11", 8, 0xffff, f0, f2, 11); in main()
249 TEST4("movn.s $f0, $f2, $11", 16, -1, f0, f2, 11); in main()
250 TEST4("movn.s $f0, $f2, $11", 16, 5, f0, f2, 11); in main()
251 TEST4("movn.s $f0, $f2, $11", 24, 0, f0, f2, 11); in main()
252 TEST4("movn.s $f0, $f2, $11", 24, 0, f0, f2, 11); in main()
253 TEST4("movn.s $f0, $f2, $11", 32, 5, f0, f2, 11); in main()
254 TEST4("movn.s $f0, $f2, $11", 32, 125487, f0, f2, 11); in main()
255 TEST4("movn.s $f0, $f2, $11", 40, 68, f0, f2, 11); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
Dbit_or.pass.cpp32 const F2 f2 = F2(); in main() local
33 assert(f2(0xEA95, 0xEA95) == 0xEA95); in main()
34 assert(f2(0xEA95L, 0xEA95) == 0xEA95); in main()
35 assert(f2(0xEA95, 0xEA95L) == 0xEA95); in main()
37 assert(f2(0xEA95, 0x58D3) == 0xFAD7); in main()
38 assert(f2(0xEA95L, 0x58D3) == 0xFAD7); in main()
39 assert(f2(0xEA95, 0x58D3L) == 0xFAD7); in main()
41 assert(f2(0x58D3, 0xEA95) == 0xFAD7); in main()
42 assert(f2(0x58D3L, 0xEA95) == 0xFAD7); in main()
43 assert(f2(0x58D3, 0xEA95L) == 0xFAD7); in main()
[all …]
Dbit_and.pass.cpp32 const F2 f2 = F2(); in main() local
33 assert(f2(0xEA95, 0xEA95) == 0xEA95); in main()
34 assert(f2(0xEA95L, 0xEA95) == 0xEA95); in main()
35 assert(f2(0xEA95, 0xEA95L) == 0xEA95); in main()
37 assert(f2(0xEA95, 0x58D3) == 0x4891); in main()
38 assert(f2(0xEA95L, 0x58D3) == 0x4891); in main()
39 assert(f2(0xEA95, 0x58D3L) == 0x4891); in main()
41 assert(f2(0x58D3, 0xEA95) == 0x4891); in main()
42 assert(f2(0x58D3L, 0xEA95) == 0x4891); in main()
43 assert(f2(0x58D3, 0xEA95L) == 0x4891); in main()
[all …]
Dbit_not.pass.cpp31 const F2 f2 = F2(); in main() local
32 assert((f2(0xEA95) & 0xFFFF ) == 0x156A); in main()
33 assert((f2(0xEA95L) & 0xFFFF ) == 0x156A); in main()
34 assert((f2(0x58D3) & 0xFFFF ) == 0xA72C); in main()
35 assert((f2(0x58D3L) & 0xFFFF ) == 0xA72C); in main()
36 assert((f2(0) & 0xFFFF ) == 0xFFFF); in main()
37 assert((f2(0L) & 0xFFFF ) == 0xFFFF); in main()
38 assert((f2(0xFFFF) & 0xFFFF ) == 0); in main()
39 assert((f2(0xFFFFL) & 0xFFFF ) == 0); in main()
/external/llvm/test/CodeGen/SystemZ/
Dfp-mul-07.ll3 declare double @llvm.fma.f64(double %f1, double %f2, double %f3)
5 define double @f1(double %f1, double %f2, double %acc) {
7 ; CHECK: madbr %f4, %f0, %f2
10 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
14 define double @f2(double %f1, double *%ptr, double %acc) {
15 ; CHECK-LABEL: f2:
16 ; CHECK: madb %f2, %f0, 0(%r2)
17 ; CHECK: ldr %f0, %f2
19 %f2 = load double , double *%ptr
20 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
[all …]
Dfp-mul-06.ll3 declare float @llvm.fma.f32(float %f1, float %f2, float %f3)
5 define float @f1(float %f1, float %f2, float %acc) {
7 ; CHECK: maebr %f4, %f0, %f2
10 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc)
14 define float @f2(float %f1, float *%ptr, float %acc) {
15 ; CHECK-LABEL: f2:
16 ; CHECK: maeb %f2, %f0, 0(%r2)
17 ; CHECK: ler %f0, %f2
19 %f2 = load float , float *%ptr
20 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc)
[all …]
Dfp-mul-08.ll3 declare float @llvm.fma.f32(float %f1, float %f2, float %f3)
5 define float @f1(float %f1, float %f2, float %acc) {
7 ; CHECK: msebr %f4, %f0, %f2
11 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %negacc)
15 define float @f2(float %f1, float *%ptr, float %acc) {
16 ; CHECK-LABEL: f2:
17 ; CHECK: mseb %f2, %f0, 0(%r2)
18 ; CHECK: ler %f0, %f2
20 %f2 = load float , float *%ptr
22 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %negacc)
[all …]
Dfp-mul-09.ll3 declare double @llvm.fma.f64(double %f1, double %f2, double %f3)
5 define double @f1(double %f1, double %f2, double %acc) {
7 ; CHECK: msdbr %f4, %f0, %f2
11 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %negacc)
15 define double @f2(double %f1, double *%ptr, double %acc) {
16 ; CHECK-LABEL: f2:
17 ; CHECK: msdb %f2, %f0, 0(%r2)
18 ; CHECK: ldr %f0, %f2
20 %f2 = load double , double *%ptr
22 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %negacc)
[all …]
/external/valgrind/none/tests/mips32/
DMoveIns.c285 TESTINSNMOVE("mfc1 $t3, $f2", 8, f2, t3); in main()
314 TESTINSNMOVEt("mtc1 $t3, $f2", 8, f2, t3); in main()
343 TESTINSNMOVE1s("mov.s $f1, $f2", 8, f1, f2); in main()
344 TESTINSNMOVE1s("mov.s $f2, $f3", 12, f2, f3); in main()
372 TESTINSNMOVE1d("mov.d $f0, $f2", 16, f0, f2); in main()
373 TESTINSNMOVE1d("mov.d $f2, $f4", 24, f2, f4); in main()
374 TESTINSNMOVE1d("mov.d $f2, $f4", 32, f2, f4); in main()
481 TESTINSNMOVEN1s("movn.s $f0, $f2, $t3", 0, 0, f0, f2, t3); in main()
482 TESTINSNMOVEN1s("movn.s $f0, $f2, $t3", 4, 1, f0, f2, t3); in main()
483 TESTINSNMOVEN1s("movn.s $f0, $f2, $t3", 8, 0xffff, f0, f2, t3); in main()
[all …]
DMoveIns.stdout.exp-BE4 mfc1 $t3, $f2 :: fs -1.875000, rt 0xbff00000
32 mtc1 $t3, $f2 :: fs -1.875000, rt 0xbff00000
60 mov.s $f1, $f2 :: fs 3.000000, rt 0x40400000
61 mov.s $f2, $f3 :: fs -1.000000, rt 0xbf800000
88 mov.d $f0, $f2 ::fs 68651422688883217793024.000000, rt 0xc0e96d19
89 mov.d $f2, $f4 ::fs 6560668703763947508025308754622564314214011401697745896073690307624960.000000, …
90 mov.d $f2, $f4 ::fs 510015646723392374046720.000000, rt 0x3b210e02
193 movn.s $f0, $f2, $t3 :: fs rt 0x0
194 movn.s $f0, $f2, $t3 :: fs rt 0x43e41fde
195 movn.s $f0, $f2, $t3 :: fs rt 0x40400000
[all …]
/external/llvm/test/MC/Disassembler/Mips/
Dmips32r6.txt53 0x46 0x84 0x18 0x80 # CHECK: cmp.af.s $f2, $f3, $f4
54 0x46 0xa4 0x18 0x80 # CHECK: cmp.af.d $f2, $f3, $f4
55 0x46 0x84 0x18 0x81 # CHECK: cmp.un.s $f2, $f3, $f4
56 0x46 0xa4 0x18 0x81 # CHECK: cmp.un.d $f2, $f3, $f4
57 0x46 0x84 0x18 0x82 # CHECK: cmp.eq.s $f2, $f3, $f4
58 0x46 0xa4 0x18 0x82 # CHECK: cmp.eq.d $f2, $f3, $f4
59 0x46 0x84 0x18 0x83 # CHECK: cmp.ueq.s $f2, $f3, $f4
60 0x46 0xa4 0x18 0x83 # CHECK: cmp.ueq.d $f2, $f3, $f4
61 0x46 0x84 0x18 0x84 # CHECK: cmp.lt.s $f2, $f3, $f4
62 0x46 0xa4 0x18 0x84 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
Dmips64r6.txt53 0x46 0x84 0x18 0x80 # CHECK: cmp.af.s $f2, $f3, $f4
54 0x46 0xa4 0x18 0x80 # CHECK: cmp.af.d $f2, $f3, $f4
55 0x46 0x84 0x18 0x81 # CHECK: cmp.un.s $f2, $f3, $f4
56 0x46 0xa4 0x18 0x81 # CHECK: cmp.un.d $f2, $f3, $f4
57 0x46 0x84 0x18 0x82 # CHECK: cmp.eq.s $f2, $f3, $f4
58 0x46 0xa4 0x18 0x82 # CHECK: cmp.eq.d $f2, $f3, $f4
59 0x46 0x84 0x18 0x83 # CHECK: cmp.ueq.s $f2, $f3, $f4
60 0x46 0xa4 0x18 0x83 # CHECK: cmp.ueq.d $f2, $f3, $f4
61 0x46 0x84 0x18 0x84 # CHECK: cmp.lt.s $f2, $f3, $f4
62 0x46 0xa4 0x18 0x84 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
/external/llvm/test/MC/Disassembler/Mips/mips32r6/
Dvalid-mips32r6-el.txt45 0x80 0x18 0x84 0x46 # CHECK: cmp.af.s $f2, $f3, $f4
46 0x80 0x18 0xa4 0x46 # CHECK: cmp.af.d $f2, $f3, $f4
47 0x81 0x18 0x84 0x46 # CHECK: cmp.un.s $f2, $f3, $f4
48 0x81 0x18 0xa4 0x46 # CHECK: cmp.un.d $f2, $f3, $f4
49 0x82 0x18 0x84 0x46 # CHECK: cmp.eq.s $f2, $f3, $f4
50 0x82 0x18 0xa4 0x46 # CHECK: cmp.eq.d $f2, $f3, $f4
51 0x83 0x18 0x84 0x46 # CHECK: cmp.ueq.s $f2, $f3, $f4
52 0x83 0x18 0xa4 0x46 # CHECK: cmp.ueq.d $f2, $f3, $f4
53 0x84 0x18 0x84 0x46 # CHECK: cmp.lt.s $f2, $f3, $f4
54 0x84 0x18 0xa4 0x46 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
Dvalid-mips32r6.txt45 0x46 0x84 0x18 0x80 # CHECK: cmp.af.s $f2, $f3, $f4
46 0x46 0xa4 0x18 0x80 # CHECK: cmp.af.d $f2, $f3, $f4
47 0x46 0x84 0x18 0x81 # CHECK: cmp.un.s $f2, $f3, $f4
48 0x46 0xa4 0x18 0x81 # CHECK: cmp.un.d $f2, $f3, $f4
49 0x46 0x84 0x18 0x82 # CHECK: cmp.eq.s $f2, $f3, $f4
50 0x46 0xa4 0x18 0x82 # CHECK: cmp.eq.d $f2, $f3, $f4
51 0x46 0x84 0x18 0x83 # CHECK: cmp.ueq.s $f2, $f3, $f4
52 0x46 0xa4 0x18 0x83 # CHECK: cmp.ueq.d $f2, $f3, $f4
53 0x46 0x84 0x18 0x84 # CHECK: cmp.lt.s $f2, $f3, $f4
54 0x46 0xa4 0x18 0x84 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dcopy_assign.pass.cpp59 std::function<int(int)> f2; in main() local
60 f2 = f; in main()
63 assert(f2.target<A>()); in main()
64 assert(f2.target<int(*)(int)>() == 0); in main()
73 std::function<int(int)> f2; in main() local
74 f2 = f; in main()
76 assert(f2.target<int(*)(int)>()); in main()
77 assert(f2.target<A>() == 0); in main()
85 std::function<int(int)> f2; in main() local
86 f2 = f; in main()
[all …]
Dalloc_function.pass.cpp61 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), f); in main() local
64 assert(f2.target<A>()); in main()
65 assert(f2.target<int(*)(int)>() == 0); in main()
74 std::function<int(int)> f2(std::allocator_arg, test_allocator<int(*)(int)>(), f); in main()
76 assert(f2.target<int(*)(int)>()); in main()
77 assert(f2.target<A>() == 0); in main()
83 std::function<int(int)> f2(std::allocator_arg, al, g); in main() local
85 assert(f2.target<int(*)(int)>()); in main()
86 assert(f2.target<A>() == 0); in main()
94 std::function<int(int)> f2(std::allocator_arg, test_allocator<int>(), f); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/logical.operations/
Dlogical_and.pass.cpp31 const F2 f2 = F2(); in main() local
32 assert( f2(36, 36)); in main()
33 assert( f2(36, 36L)); in main()
34 assert( f2(36L, 36)); in main()
35 assert(!f2(36, 0)); in main()
36 assert(!f2(0, 36)); in main()
37 assert( f2(36, 36L)); in main()
38 assert(!f2(36, 0L)); in main()
39 assert(!f2(0, 36L)); in main()
40 assert( f2(36L, 36)); in main()
[all …]
Dlogical_or.pass.cpp31 const F2 f2 = F2(); in main() local
32 assert( f2(36, 36)); in main()
33 assert( f2(36, 36L)); in main()
34 assert( f2(36L, 36)); in main()
35 assert( f2(36, 0)); in main()
36 assert( f2(0, 36)); in main()
37 assert( f2(36, 0L)); in main()
38 assert( f2(0, 36L)); in main()
39 assert(!f2(0, 0)); in main()
40 assert(!f2(0, 0L)); in main()
[all …]
/external/llvm/test/MC/Disassembler/Mips/mips64r6/
Dvalid-mips64r6-el.txt45 0x80 0x18 0x84 0x46 # CHECK: cmp.af.s $f2, $f3, $f4
46 0x80 0x18 0xa4 0x46 # CHECK: cmp.af.d $f2, $f3, $f4
47 0x81 0x18 0x84 0x46 # CHECK: cmp.un.s $f2, $f3, $f4
48 0x81 0x18 0xa4 0x46 # CHECK: cmp.un.d $f2, $f3, $f4
49 0x82 0x18 0x84 0x46 # CHECK: cmp.eq.s $f2, $f3, $f4
50 0x82 0x18 0xa4 0x46 # CHECK: cmp.eq.d $f2, $f3, $f4
51 0x83 0x18 0x84 0x46 # CHECK: cmp.ueq.s $f2, $f3, $f4
52 0x83 0x18 0xa4 0x46 # CHECK: cmp.ueq.d $f2, $f3, $f4
53 0x84 0x18 0x84 0x46 # CHECK: cmp.lt.s $f2, $f3, $f4
54 0x84 0x18 0xa4 0x46 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
Dvalid-mips64r6.txt45 0x46 0x84 0x18 0x80 # CHECK: cmp.af.s $f2, $f3, $f4
46 0x46 0xa4 0x18 0x80 # CHECK: cmp.af.d $f2, $f3, $f4
47 0x46 0x84 0x18 0x81 # CHECK: cmp.un.s $f2, $f3, $f4
48 0x46 0xa4 0x18 0x81 # CHECK: cmp.un.d $f2, $f3, $f4
49 0x46 0x84 0x18 0x82 # CHECK: cmp.eq.s $f2, $f3, $f4
50 0x46 0xa4 0x18 0x82 # CHECK: cmp.eq.d $f2, $f3, $f4
51 0x46 0x84 0x18 0x83 # CHECK: cmp.ueq.s $f2, $f3, $f4
52 0x46 0xa4 0x18 0x83 # CHECK: cmp.ueq.d $f2, $f3, $f4
53 0x46 0x84 0x18 0x84 # CHECK: cmp.lt.s $f2, $f3, $f4
54 0x46 0xa4 0x18 0x84 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
Dswap.pass.cpp62 std::function<int(int)> f2 = A(2); in main() local
66 assert(f2.target<A>()->id() == 2); in main()
67 f1.swap(f2); in main()
71 assert(f2.target<A>()->id() == 1); in main()
77 std::function<int(int)> f2 = g; in main() local
81 assert(*f2.target<int(*)(int)>() == g); in main()
82 f1.swap(f2); in main()
86 assert(f2.target<A>()->id() == 1); in main()
92 std::function<int(int)> f2 = A(1); in main() local
96 assert(f2.target<A>()->id() == 1); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
Dswap.pass.cpp65 std::function<int(int)> f2 = A(2); in main() local
69 assert(f2.target<A>()->id() == 2); in main()
70 swap(f1, f2); in main()
74 assert(f2.target<A>()->id() == 1); in main()
80 std::function<int(int)> f2 = g; in main() local
84 assert(*f2.target<int(*)(int)>() == g); in main()
85 swap(f1, f2); in main()
89 assert(f2.target<A>()->id() == 1); in main()
95 std::function<int(int)> f2 = A(1); in main() local
99 assert(f2.target<A>()->id() == 1); in main()
[all …]
/external/clang/test/CodeGen/
Dfp16-ops.c14 volatile float f0, f1, f2; variable
87 h1 = h0 * f2; in foo()
112 h1 = (h0 / f2); in foo()
143 h1 = (f2 + h0); in foo()
168 h1 = (f2 - h0); in foo()
189 test = (f2 < h0); in foo()
205 test = (h0 > f2); in foo()
231 test = (f2 <= h0); in foo()
247 test = (h0 >= f2); in foo()
331 h0 += f2; in foo()
[all …]
/external/valgrind/none/tests/s390x/
Dbfp-1.c7 volatile float f1, f2; variable
32 register float r2 asm("f2") = f2; in fadd4()
37 printf("%f + %f = %f\n", f1, f2, r1); in fadd4()
43 register float r2 asm("f2") = f2; in fsub4()
48 printf("%f - %f = %f\n", f1, f2, r1); in fsub4()
54 register float r2 asm("f2") = f2; in fmul4()
59 printf("%f * %f = %f\n", f1, f2, r1); in fmul4()
65 register float r2 asm("f2") = f2; in fdiv4()
70 printf("%f / %f = %f\n", f1, f2, r1); in fdiv4()
86 f2 = 1.25f; in main()
/external/llvm/test/MC/Mips/
Dmicromips-fpu-instructions.s20 # CHECK-EL: lwc1 $f2, 4($6) # encoding: [0x46,0x9c,0x04,0x00]
21 # CHECK-EL: ldc1 $f2, 4($6) # encoding: [0x46,0xbc,0x04,0x00]
22 # CHECK-EL: swc1 $f2, 4($6) # encoding: [0x46,0x98,0x04,0x00]
23 # CHECK-EL: sdc1 $f2, 4($6) # encoding: [0x46,0xb8,0x04,0x00]
28 # CHECK-EL: luxc1 $f2, $4($6) # encoding: [0x86,0x54,0x48,0x11]
29 # CHECK-EL: suxc1 $f2, $4($6) # encoding: [0x86,0x54,0x88,0x11]
66 # CHECK-EL: madd.s $f2, $f4, $f6, $f8 # encoding: [0x06,0x55,0x01,0x11]
67 # CHECK-EL: madd.d $f2, $f4, $f6, $f8 # encoding: [0x06,0x55,0x09,0x11]
68 # CHECK-EL: msub.s $f2, $f4, $f6, $f8 # encoding: [0x06,0x55,0x21,0x11]
69 # CHECK-EL: msub.d $f2, $f4, $f6, $f8 # encoding: [0x06,0x55,0x29,0x11]
[all …]

12345678910>>...65