Searched refs:fcmp (Results 1 - 25 of 37) sorted by relevance

12

/external/python/cpython2/Demo/threads/
H A Dfcmp.py29 # fcmp lexicographically compares the fringes of two nested lists
30 def fcmp(l1, l2): function
52 print fcmp(range(7), x) # 0; fringes are equal
53 print fcmp(range(6), x) # -1; 1st list ends early
54 print fcmp(x, range(6)) # 1; 2nd list ends early
55 print fcmp(range(8), x) # 1; 2nd list ends early
56 print fcmp(x, range(8)) # -1; 1st list ends early
57 print fcmp([1,[[2],8]],
59 print fcmp([1,[[3],8]],
61 print fcmp([
[all...]
/external/swiftshader/third_party/LLVM/test/MC/MBlaze/
H A Dmblaze_fpu.s44 # CHECK: fcmp.un
47 fcmp.un r0, r1, r2
49 # CHECK: fcmp.lt
52 fcmp.lt r0, r1, r2
54 # CHECK: fcmp.eq
57 fcmp.eq r0, r1, r2
59 # CHECK: fcmp.le
62 fcmp.le r0, r1, r2
64 # CHECK: fcmp.gt
67 fcmp
[all...]
/external/llvm/test/MC/AArch64/
H A Doptional-hash.s10 // CHECK: fcmp s0, #0.0
11 fcmp s0, 0.0
H A Darm64-fp-encoding.s188 fcmp h1, h2
189 fcmp s1, s2
190 fcmp d1, d2
191 fcmp h1, #0.0
192 fcmp s1, #0.0
193 fcmp d1, #0.0
201 ; FP16: fcmp h1, h2 ; encoding: [0x20,0x20,0xe2,0x1e]
203 ; NO-FP16-NEXT: fcmp h1, h2
204 ; CHECK: fcmp s1, s2 ; encoding: [0x20,0x20,0x22,0x1e]
205 ; CHECK: fcmp d
[all...]
H A Dbasic-a64-diagnostics.s1533 fcmp s3, d2
1536 // CHECK-ERROR-NEXT: fcmp s3, d2
1539 fcmp s9, #-0.0
1540 fcmp d3, #-0.0
1541 fcmp s1, #1.0
1544 // CHECK-ERROR-NEXT: fcmp s9, #-0.0
1547 // CHECK-ERROR-NEXT: fcmp d3, #-0.0
1550 // CHECK-ERROR-NEXT: fcmp s1, #1.0
H A Dbasic-a64-instructions.s1762 fcmp s3, s5
1763 fcmp s31, #0.0
1764 // CHECK: fcmp s3, s5 // encoding: [0x60,0x20,0x25,0x1e]
1765 // CHECK: fcmp s31, #0.0 // encoding: [0xe8,0x23,0x20,0x1e]
1772 fcmp d4, d12
1773 fcmp d23, #0.0
1774 // CHECK: fcmp d4, d12 // encoding: [0x80,0x20,0x6c,0x1e]
1775 // CHECK: fcmp d23, #0.0 // encoding: [0xe8,0x22,0x60,0x1e]
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_fcmp_main.cpp10 // Driver for cross testing the fcmp bitcode instruction
28 extern "C" bool fcmp##cmp##Float(float a, float b); \
29 extern "C" bool fcmp##cmp##Double(double a, double b); \
32 extern "C" v4si32 fcmp##cmp##Vector(v4f32 a, v4f32 b); \
83 "fcmp" STR(cmp), Subzero_fcmp##cmp##Float, fcmp##cmp##Float, \
84 Subzero_fcmp##cmp##Double, fcmp##cmp##Double, \
168 { "fcmp" STR(cmp), Subzero_fcmp##cmp##Vector, fcmp##cmp##Vector } \
/external/tensorflow/tensorflow/core/platform/cloud/
H A Dfile_block_cache.cc84 auto fcmp = block_map_.upper_bound(fmax); local
85 if (fcmp != block_map_.begin() && key < (--fcmp)->first) {
/external/llvm/utils/vim/syntax/
H A Dllvm.vim27 syn keyword llvmStatement extractvalue fadd fast fcmp fdiv fence fmul fpext
/external/swiftshader/third_party/LLVM/utils/vim/
H A Dllvm.vim28 syn keyword llvmStatement icmp fcmp
/external/python/cpython2/Lib/test/
H A Dtest_builtin.py5 from test.test_support import fcmp, have_unicode, TESTFN, unlink, \
232 self.assertTrue(not fcmp(coerce(1, 1.1), (1.0, 1.1)))
234 self.assertTrue(not fcmp(coerce(1L, 1.1), (1.0, 1.1)))
348 self.assertTrue(not fcmp(divmod(3.25, 1.0), (3.0, 0.25)))
349 self.assertTrue(not fcmp(divmod(-3.25, 1.0), (-4.0, 0.75)))
350 self.assertTrue(not fcmp(divmod(3.25, -1.0), (-4.0, -0.75)))
351 self.assertTrue(not fcmp(divmod(-3.25, -1.0), (3.0, -0.25)))
6 run_unittest, check_py3k_warnings namespace
H A Dtest_support.py34 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
560 def fcmp(x, y): # fuzzy comparison function function
570 outcome = fcmp(x[i], y[i])
H A Dtest_float.py162 self.assertEqual(test_support.fcmp(float(" .25e-1 "), .025), 0)
/external/python/cpython2/Objects/
H A Dobject.c955 cmpfunc fcmp; local
968 fcmp = v->ob_type->tp_compare;
969 if (fcmp != NULL) {
970 int c = (*fcmp)(v, w);
/external/v8/src/arm64/
H A Dmacro-assembler-arm64-inl.h584 fcmp(fn, fm);
594 fcmp(fn, tmp);
596 fcmp(fn, value);
H A Dassembler-arm64.h1599 void fcmp(const FPRegister& fn, const FPRegister& fm);
1602 void fcmp(const FPRegister& fn, double value);
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml284 * CHECK: @const_fcmp = global i1 fcmp ole
1028 * CHECK: %build_fcmp_false = fcmp false float %F1, %F2
1029 * CHECK: %build_fcmp_true = fcmp true float %F2, %F1
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
H A Dvmcore.ml233 * RUN: grep {@const_fcmp = global i1 fcmp ole } < %t.ll
1148 * RUN: grep {%build_fcmp_false = fcmp false float %F1, %F2} < %t.ll
1149 * RUN: grep {%build_fcmp_true = fcmp true float %F2, %F1} < %t.ll
/external/vixl/src/aarch64/
H A Dsimulator-aarch64.cc3329 fcmp(vf, rd, rn, rm, eq);
3332 fcmp(vf, rd, rn, rm, ge);
3335 fcmp(vf, rd, rn, rm, gt);
4621 fcmp(vf, rd, rn, rm, eq);
4624 fcmp(vf, rd, rn, rm, ge);
4627 fcmp(vf, rd, rn, rm, gt);
H A Dlogic-aarch64.cc4038 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::aarch64::Simulator
4077 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::aarch64::Simulator
4083 fcmp<float>(vform, dst, src1, src2, cond);
4086 fcmp<double>(vform, dst, src1, src2, cond);
4099 fcmp<float>(vform, dst, src, zero_reg, cond);
4103 fcmp<double>(vform, dst, src, zero_reg, cond);
4118 fcmp<float>(vform, dst, abs_src1, abs_src2, cond);
4123 fcmp<double>(vform, dst, abs_src1, abs_src2, cond);
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp739 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
/external/swiftshader/third_party/LLVM/lib/AsmParser/
H A DLLLexer.cpp621 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
/external/vixl/test/aarch64/
H A Dtest-simulator-aarch64.cc2723 TEST(fcmp_d) { CALL_TEST_FP_HELPER(fcmp, d, Cmp, kInputDoubleBasic); }
2724 TEST(fcmp_s) { CALL_TEST_FP_HELPER(fcmp, s, Cmp, kInputFloatBasic); }
2725 TEST(fcmp_dz) { CALL_TEST_FP_HELPER(fcmp, dz, CmpZero, kInputDoubleBasic); }
2726 TEST(fcmp_sz) { CALL_TEST_FP_HELPER(fcmp, sz, CmpZero, kInputFloatBasic); }
/external/v8/src/mips/
H A Dassembler-mips.h987 void fcmp(FPURegister src1, const double src2, FPUCondition cond);
/external/v8/src/mips64/
H A Dassembler-mips64.h1046 void fcmp(FPURegister src1, const double src2, FPUCondition cond);

Completed in 1305 milliseconds

12