Home
last modified time | relevance | path

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

12345678910>>...140

/external/llvm/test/MC/Mips/
Dtarget-soft-float.s11 dmfc1 $7, $f2
13 dmtc1 $6, $f2
16 ceil.l.d $f2, $f2
18 ceil.l.s $f2, $f2
20 cvt.d.l $f2, $f2
22 cvt.l.d $f2, $f2
24 cvt.l.s $f2, $f2
26 cvt.s.l $f2, $f2
28 floor.l.d $f2, $f2
30 floor.l.s $f2, $f2
[all …]
Dset-softfloat-hardfloat.s5 add.s $f2, $f2, $f2
6 sub.s $f2, $f2, $f2
10 # CHECK: add.s $f2, $f2, $f2
11 # CHECK: sub.s $f2, $f2, $f2
/external/capstone/suite/MC/Sparc/
Dsparc64-ctrl-instructions.s.cs44 0x85,0xaa,0x60,0x21 = fmovsne %icc, %f1, %f2
45 0x85,0xa8,0x60,0x21 = fmovse %icc, %f1, %f2
46 0x85,0xaa,0xa0,0x21 = fmovsg %icc, %f1, %f2
47 0x85,0xa8,0xa0,0x21 = fmovsle %icc, %f1, %f2
48 0x85,0xaa,0xe0,0x21 = fmovsge %icc, %f1, %f2
49 0x85,0xa8,0xe0,0x21 = fmovsl %icc, %f1, %f2
50 0x85,0xab,0x20,0x21 = fmovsgu %icc, %f1, %f2
51 0x85,0xa9,0x20,0x21 = fmovsleu %icc, %f1, %f2
52 0x85,0xab,0x60,0x21 = fmovscc %icc, %f1, %f2
53 0x85,0xa9,0x60,0x21 = fmovscs %icc, %f1, %f2
[all …]
/external/capstone/suite/
Dautogen_x86imm.py10 f2 = open(OUTPUT, "w") variable
23 f2.write("{2, %s},\n" %name)
25 f2.write("{2, %s},\n" %name)
27 f2.write("{4, %s},\n" %name)
29 f2.write("{4, %s},\n" %name)
31 f2.write("{8, %s},\n" %name)
33 f2.write("{8, %s},\n" %name)
35 f2.write("{8, %s},\n" %name)
37 f2.write("{8, %s},\n" %name)
39 f2.write("{8, %s},\n" %name)
[all …]
/external/skia/tests/sksl/runtime/
DRecursiveComparison_Structs.skrp39 39. zero_3_slots_unmasked _1_a.f1, _1_a.f2, _1_a.f3 = 0
43 43. copy_slot_unmasked _1_a.f2 = $0
46 46. zero_3_slots_unmasked _2_b.f1, _2_b.f2, _2_b.f3 = 0
54 54. copy_slot_unmasked _2_b.f2 = $0
71 71. copy_slot_unmasked $14 = _1_a.f2
72 72. copy_slot_unmasked $15 = _2_b.f2
84 84. copy_slot_unmasked $15 = _1_a.f2
85 85. copy_slot_unmasked $16 = _2_b.f2
100 100. copy_slot_unmasked f2 = ZM
106 106. zero_3_slots_unmasked a.f1, a.f2, a.f3 = 0
[all …]
/external/llvm/test/MC/Mips/micromips32r6/
Dvalid.s142 add.d $f2, $f4, $f6 # CHECK: add.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0x30]
144 sub.d $f2, $f4, $f6 # CHECK: sub.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0x70]
146 mul.d $f2, $f4, $f6 # CHECK: mul.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0xb0]
148 div.d $f2, $f4, $f6 # CHECK: div.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0xf0]
165 cmp.af.s $f2, $f3, $f4 # CHECK: cmp.af.s $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x05]
166 cmp.af.d $f2, $f3, $f4 # CHECK: cmp.af.d $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x15]
167 cmp.un.s $f2, $f3, $f4 # CHECK: cmp.un.s $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x45]
168 cmp.un.d $f2, $f3, $f4 # CHECK: cmp.un.d $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x55]
169 cmp.eq.s $f2, $f3, $f4 # CHECK: cmp.eq.s $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x85]
170 cmp.eq.d $f2, $f3, $f4 # CHECK: cmp.eq.d $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x95]
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/operators/
DZipTest.kt18 val f2 = flowOf(1, 2, 3) in <lambda>() constant
19 assertEquals(listOf("a1", "b2", "c3"), f1.zip(f2, { i, j -> i + j }).toList()) in <lambda>()
25 val f2 = flowOf(1, 2, 3) in <lambda>() constant
26 assertEquals(listOf("a1", "b2", "c3"), f1.zip(f2) { i, j -> i + j }.toList()) in <lambda>()
27 assertEquals(listOf("a1", "b2", "c3"), f2.zip(f1) { i, j -> j + i }.toList()) in <lambda>()
33 val f2 = emptyFlow<Int>() in <lambda>() constant
34 assertEquals(emptyList(), f1.zip(f2, { i, j -> i + j }).toList()) in <lambda>()
40 val f2 = flowOf(1) in <lambda>() constant
41 assertEquals(emptyList(), f1.zip(f2, { i, j -> i + j }).toList()) in <lambda>()
47 val f2 = emptyFlow<Int>() in <lambda>() constant
[all …]
/external/llvm/test/MC/Mips/micromips64r6/
Dvalid.s62 add.d $f2, $f4, $f6 # CHECK: add.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0x30]
64 sub.d $f2, $f4, $f6 # CHECK: sub.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0x70]
66 mul.d $f2, $f4, $f6 # CHECK: mul.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0xb0]
68 div.d $f2, $f4, $f6 # CHECK: div.d $f2, $f4, $f6 # encoding: [0x54,0xc4,0x11,0xf0]
85 cmp.af.s $f2, $f3, $f4 # CHECK: cmp.af.s $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x05]
86 cmp.af.d $f2, $f3, $f4 # CHECK: cmp.af.d $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x15]
87 cmp.un.s $f2, $f3, $f4 # CHECK: cmp.un.s $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x45]
88 cmp.un.d $f2, $f3, $f4 # CHECK: cmp.un.d $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x55]
89 cmp.eq.s $f2, $f3, $f4 # CHECK: cmp.eq.s $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x85]
90 cmp.eq.d $f2, $f3, $f4 # CHECK: cmp.eq.d $f2, $f3, $f4 # encoding: [0x54,0x83,0x10,0x95]
[all …]
/external/llvm/test/CodeGen/SystemZ/
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-07.ll6 declare double @llvm.fma.f64(double %f1, double %f2, double %f3)
8 define double @f1(double %f1, double %f2, double %acc) {
10 ; CHECK-SCALAR: madbr %f4, %f0, %f2
12 ; CHECK-VECTOR: wfmadb %f0, %f0, %f2, %f4
14 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
18 define double @f2(double %f1, double *%ptr, double %acc) {
19 ; CHECK-LABEL: f2:
20 ; CHECK: madb %f2, %f0, 0(%r2)
21 ; CHECK: ldr %f0, %f2
23 %f2 = load double , double *%ptr
[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.ll6 declare double @llvm.fma.f64(double %f1, double %f2, double %f3)
8 define double @f1(double %f1, double %f2, double %acc) {
10 ; CHECK-SCALAR: msdbr %f4, %f0, %f2
12 ; CHECK-VECTOR: wfmsdb %f0, %f0, %f2, %f4
15 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %negacc)
19 define double @f2(double %f1, double *%ptr, double %acc) {
20 ; CHECK-LABEL: f2:
21 ; CHECK: msdb %f2, %f0, 0(%r2)
22 ; CHECK: ldr %f0, %f2
24 %f2 = load double , double *%ptr
[all …]
/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
Dbit_or.pass.cpp34 const F2 f2 = F2(); in main() local
35 assert(f2(0xEA95, 0xEA95) == 0xEA95); in main()
36 assert(f2(0xEA95L, 0xEA95) == 0xEA95); in main()
37 assert(f2(0xEA95, 0xEA95L) == 0xEA95); in main()
39 assert(f2(0xEA95, 0x58D3) == 0xFAD7); in main()
40 assert(f2(0xEA95L, 0x58D3) == 0xFAD7); in main()
41 assert(f2(0xEA95, 0x58D3L) == 0xFAD7); in main()
43 assert(f2(0x58D3, 0xEA95) == 0xFAD7); in main()
44 assert(f2(0x58D3L, 0xEA95) == 0xFAD7); in main()
45 assert(f2(0x58D3, 0xEA95L) == 0xFAD7); in main()
[all …]
Dbit_and.pass.cpp34 const F2 f2 = F2(); in main() local
35 assert(f2(0xEA95, 0xEA95) == 0xEA95); in main()
36 assert(f2(0xEA95L, 0xEA95) == 0xEA95); in main()
37 assert(f2(0xEA95, 0xEA95L) == 0xEA95); in main()
39 assert(f2(0xEA95, 0x58D3) == 0x4891); in main()
40 assert(f2(0xEA95L, 0x58D3) == 0x4891); in main()
41 assert(f2(0xEA95, 0x58D3L) == 0x4891); in main()
43 assert(f2(0x58D3, 0xEA95) == 0x4891); in main()
44 assert(f2(0x58D3L, 0xEA95) == 0x4891); in main()
45 assert(f2(0x58D3, 0xEA95L) == 0x4891); in main()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/function.objects/bitwise.operations/
Dbit_or.pass.cpp37 const F2 f2 = F2(); in main() local
38 assert(f2(0xEA95, 0xEA95) == 0xEA95); in main()
39 assert(f2(0xEA95L, 0xEA95) == 0xEA95); in main()
40 assert(f2(0xEA95, 0xEA95L) == 0xEA95); in main()
42 assert(f2(0xEA95, 0x58D3) == 0xFAD7); in main()
43 assert(f2(0xEA95L, 0x58D3) == 0xFAD7); in main()
44 assert(f2(0xEA95, 0x58D3L) == 0xFAD7); in main()
46 assert(f2(0x58D3, 0xEA95) == 0xFAD7); in main()
47 assert(f2(0x58D3L, 0xEA95) == 0xFAD7); in main()
48 assert(f2(0x58D3, 0xEA95L) == 0xFAD7); in main()
[all …]
Dbit_and.pass.cpp37 const F2 f2 = F2(); in main() local
38 assert(f2(0xEA95, 0xEA95) == 0xEA95); in main()
39 assert(f2(0xEA95L, 0xEA95) == 0xEA95); in main()
40 assert(f2(0xEA95, 0xEA95L) == 0xEA95); in main()
42 assert(f2(0xEA95, 0x58D3) == 0x4891); in main()
43 assert(f2(0xEA95L, 0x58D3) == 0x4891); in main()
44 assert(f2(0xEA95, 0x58D3L) == 0x4891); in main()
46 assert(f2(0x58D3, 0xEA95) == 0x4891); in main()
47 assert(f2(0x58D3L, 0xEA95) == 0x4891); in main()
48 assert(f2(0x58D3, 0xEA95L) == 0x4891); in main()
[all …]
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/math/
DFractionTest.java68 Fraction f2; in testAdd() local
71 f2 = Fraction.getFraction(1, 5); in testAdd()
72 f = f1.add(f2); in testAdd()
77 f2 = Fraction.getFraction(2, 5); in testAdd()
78 f = f1.add(f2); in testAdd()
83 f2 = Fraction.getFraction(3, 5); in testAdd()
84 f = f1.add(f2); in testAdd()
89 f2 = Fraction.getFraction(-4, 5); in testAdd()
90 f = f1.add(f2); in testAdd()
95 f2 = Fraction.ONE; in testAdd()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
Dswap.pass.cpp67 std::function<int(int)> f2 = A(2); in main() local
69 static_assert(noexcept(swap(f1, f2)), "" ); in main()
74 RTTI_ASSERT(f2.target<A>()->id() == 2); in main()
75 swap(f1, f2); in main()
79 RTTI_ASSERT(f2.target<A>()->id() == 1); in main()
85 std::function<int(int)> f2 = g; in main() local
87 static_assert(noexcept(swap(f1, f2)), "" ); in main()
92 RTTI_ASSERT(*f2.target<int(*)(int)>() == g); in main()
93 swap(f1, f2); in main()
97 RTTI_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.cpp66 std::function<int(int)> f2 = A(2); in main() local
68 static_assert(noexcept(swap(f1, f2)), "" ); in main()
73 assert(f2.target<A>()->id() == 2); in main()
74 swap(f1, f2); in main()
78 assert(f2.target<A>()->id() == 1); in main()
84 std::function<int(int)> f2 = g; in main() local
86 static_assert(noexcept(swap(f1, f2)), "" ); in main()
91 assert(*f2.target<int(*)(int)>() == g); in main()
92 swap(f1, f2); in main()
96 assert(f2.target<A>()->id() == 1); in main()
[all …]
/external/llvm/test/MC/Disassembler/Mips/mips32r6/
Dvalid-mips32r6-el.txt58 0x80 0x18 0x84 0x46 # CHECK: cmp.af.s $f2, $f3, $f4
59 0x80 0x18 0xa4 0x46 # CHECK: cmp.af.d $f2, $f3, $f4
60 0x81 0x18 0x84 0x46 # CHECK: cmp.un.s $f2, $f3, $f4
61 0x81 0x18 0xa4 0x46 # CHECK: cmp.un.d $f2, $f3, $f4
62 0x82 0x18 0x84 0x46 # CHECK: cmp.eq.s $f2, $f3, $f4
63 0x82 0x18 0xa4 0x46 # CHECK: cmp.eq.d $f2, $f3, $f4
64 0x83 0x18 0x84 0x46 # CHECK: cmp.ueq.s $f2, $f3, $f4
65 0x83 0x18 0xa4 0x46 # CHECK: cmp.ueq.d $f2, $f3, $f4
66 0x84 0x18 0x84 0x46 # CHECK: cmp.lt.s $f2, $f3, $f4
67 0x84 0x18 0xa4 0x46 # CHECK: cmp.lt.d $f2, $f3, $f4
[all …]
/external/linux-kselftest/tools/testing/selftests/futex/functional/
Dfutex_requeue_pi_signal_restart.c35 futex_t f2 = FUTEX_INITIALIZER; variable
100 info("Calling FUTEX_LOCK_PI on f2=%x @ %p\n", f2, &f2); in waiterfn()
102 res = futex_wait_requeue_pi(&f1, old_val, &(f2), NULL, in waiterfn()
107 info("w2:futex: %x\n", f2); in waiterfn()
109 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG); in waiterfn()
156 info("m1:f2: %x\n", f2); in main()
165 info("Calling FUTEX_LOCK_PI on f2=%x @ %p\n", f2, &f2); in main()
166 info("m2:f2: %x\n", f2); in main()
167 futex_lock_pi(&f2, 0, 0, FUTEX_PRIVATE_FLAG); in main()
168 info("m3:f2: %x\n", f2); in main()
[all …]
/external/musl/src/stdio/
Dfreopen.c16 FILE *f2; in freopen() local
29 f2 = fopen(filename, mode); in freopen()
30 if (!f2) goto fail; in freopen()
31 if (f2->fd == f->fd) f2->fd = -1; /* avoid closing in fclose */ in freopen()
32 else if (__dup3(f2->fd, f->fd, fl&O_CLOEXEC)<0) goto fail2; in freopen()
34 f->flags = (f->flags & F_PERM) | f2->flags; in freopen()
35 f->read = f2->read; in freopen()
36 f->write = f2->write; in freopen()
37 f->seek = f2->seek; in freopen()
38 f->close = f2->close; in freopen()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/function.objects/logical.operations/
Dlogical_and.pass.cpp36 const F2 f2 = F2(); in main() local
37 assert( f2(36, 36)); in main()
38 assert( f2(36, 36L)); in main()
39 assert( f2(36L, 36)); in main()
40 assert(!f2(36, 0)); in main()
41 assert(!f2(0, 36)); in main()
42 assert( f2(36, 36L)); in main()
43 assert(!f2(36, 0L)); in main()
44 assert(!f2(0, 36L)); in main()
45 assert( f2(36L, 36)); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/logical.operations/
Dlogical_and.pass.cpp33 const F2 f2 = F2(); in main() local
34 assert( f2(36, 36)); in main()
35 assert( f2(36, 36L)); in main()
36 assert( f2(36L, 36)); in main()
37 assert(!f2(36, 0)); in main()
38 assert(!f2(0, 36)); in main()
39 assert( f2(36, 36L)); in main()
40 assert(!f2(36, 0L)); in main()
41 assert(!f2(0, 36L)); in main()
42 assert( f2(36L, 36)); in main()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/input.output/file.streams/fstreams/filebuf.assign/
Dnonmember_swap.pass.cpp34 std::filebuf f2; in main() local
35 swap(f2, f); in main()
37 assert(f2.is_open()); in main()
38 assert(f2.sgetc() == '2'); in main()
51 std::filebuf f2; in main() local
52 swap(f, f2); in main()
54 assert(f2.is_open()); in main()
55 assert(f2.sgetc() == '2'); in main()
71 std::filebuf f1, f2; in main() local
73 assert(f2.open(tmpB, std::ios_base::in) != 0); in main()
[all …]

12345678910>>...140