Home
last modified time | relevance | path

Searched refs:and_ (Results 1 – 25 of 69) sorted by relevance

123

/external/tensorflow/tensorflow/python/autograph/operators/
Dlogical_test.py39 self.assertTrue(logical.and_(lambda: True, lambda: True))
40 self.assertTrue(logical.and_(lambda: [1], lambda: True))
41 self.assertListEqual(logical.and_(lambda: True, lambda: [1]), [1])
43 self.assertFalse(logical.and_(lambda: False, lambda: True))
44 self.assertFalse(logical.and_(lambda: False, self.assertNotCalled))
49 t = logical.and_(self._tf_true, self._tf_true)
51 t = logical.and_(self._tf_true, lambda: True)
53 t = logical.and_(self._tf_false, lambda: True)
Dlogical.py43 def and_(a, b): function
D__init__.py51 from tensorflow.python.autograph.operators.logical import and_
/external/protobuf/src/google/protobuf/stubs/
Dtemplate_util_unittest.cc94 value = and_<true_, true_>::value; in TEST()
97 value = and_<true_, false_>::value; in TEST()
100 value = and_<false_, true_>::value; in TEST()
103 value = and_<false_, false_>::value; in TEST()
Dtemplate_util.h124 struct and_ : public integral_constant<bool, (A::value && B::value)> {
/external/OpenCL-CTS/test_conformance/subgroups/
Dtest_subgroup_non_uniform_arithmetic.cpp385 int error = rft.run_impl<T, SCIN_NU<T, ArithmeticOp::and_>>( in run_functions_and_or_xor_for_type()
391 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::and_>>( in run_functions_and_or_xor_for_type()
397 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::and_>>( in run_functions_and_or_xor_for_type()
Dsubhelpers.h101 and_, enumerator
117 case ArithmeticOp::and_: return "and"; in operation_names()
358 case ArithmeticOp::and_: return (Ty)~0; in identify_limits()
383 case ArithmeticOp::and_: return (cl_int)~0;
Dtest_subgroup_clustered_reduce.cpp281 int error = rft.run_impl<T, RED_CLU<T, ArithmeticOp::and_>>( in run_cluster_and_or_xor_for_type()
Dsubgroup_common_templates.h317 case ArithmeticOp::and_: return a & b; in calculate()
/external/python/cpython3/Lib/
Doperator.py79 def and_(a, b): function
425 __and__ = and_
/external/vixl/test/aarch64/
Dtest-disasm-aarch64.cc677 COMPARE(and_(x0, x0, Operand(value)), result); in TEST()
685 COMPARE(and_(x0, x0, Operand(value)), result); in TEST()
693 COMPARE(and_(x0, x0, Operand(value)), result); in TEST()
701 COMPARE(and_(x0, x0, Operand(value)), result); in TEST()
709 COMPARE(and_(x0, x0, Operand(value)), result); in TEST()
714 COMPARE(and_(x0, x0, Operand(0x5555555555555555)), in TEST()
716 COMPARE(and_(x0, x0, Operand(0xaaaaaaaaaaaaaaaa)), in TEST()
720 COMPARE(and_(w0, w0, Operand(0xff8007ff)), in TEST()
722 COMPARE(and_(w0, w0, Operand(0xf87ff87f)), in TEST()
724 COMPARE(and_(w0, w0, Operand(0x87878787)), in TEST()
[all …]
Dtest-api-movprfx-aarch64.cc92 __ and_(z12.VnD(), p5.Merging(), z12.VnD(), z12.VnD()); in TEST() local
637 __ and_(z25.VnB(), p4.Merging(), z25.VnB(), z27.VnB()); in TEST() local
1049 __ and_(z31.VnS(), z31.VnS(), 4); in TEST() local
1275 __ and_(z8.VnS(), p3.Merging(), z8.VnS(), z31.VnS()); in TEST() local
1278 __ and_(z20.VnS(), z20.VnS(), 4); in TEST() local
Dtest-disasm-sve-aarch64.cc58 COMPARE_PREFIX(and_(p6.VnB(), p7.Zeroing(), p6.VnB(), p7.VnB()), in TEST()
165 COMPARE_PREFIX(and_(z2.VnD(), z2.VnD(), 0x0000ffff0000ffff), in TEST()
209 COMPARE_PREFIX(and_(z12.VnD(), z5.VnD(), z29.VnD()), in TEST()
2161 COMPARE_PREFIX(and_(z22.VnB(), p3.Merging(), z22.VnB(), z3.VnB()), in TEST()
2163 COMPARE_PREFIX(and_(z22.VnH(), p3.Merging(), z22.VnH(), z3.VnH()), in TEST()
2165 COMPARE_PREFIX(and_(z22.VnS(), p3.Merging(), z22.VnS(), z3.VnS()), in TEST()
2167 COMPARE_PREFIX(and_(z22.VnD(), p3.Merging(), z22.VnD(), z3.VnD()), in TEST()
5971 COMPARE_PREFIX(and_(p9.VnB(), p3.Zeroing(), p0.VnB(), p14.VnB()), in TEST()
6013 COMPARE_PREFIX(and_(p5.VnB(), p4.Zeroing(), p3.VnB(), p3.VnB()), in TEST()
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dgenerated_code.md30 * `and` -> `ag__.and_`
/external/vixl/benchmarks/aarch32/
Dasm-disasm-speed-test.cc473 __ and_(r5, r5, 0x1f); in Generate_3() local
481 __ and_(r0, r0, 0x1f); in Generate_3() local
489 __ and_(r1, r1, 0x1f); in Generate_3() local
890 __ and_(r3, r3, 0x1f); in Generate_6() local
1072 __ and_(r3, r8, 0x1f); in Generate_8() local
2474 __ and_(r3, r6, 0x1f); in Generate_19() local
2667 __ and_(r2, r2, 0x1f); in Generate_21() local
2671 __ and_(r2, r2, 0x1f); in Generate_21() local
2840 __ and_(lr, r3, 0x1f); in Generate_22() local
2848 __ and_(r0, r0, 0x1f); in Generate_22() local
[all …]
/external/python/cpython2/Lib/test/
Dtest_operator.py115 self.assertRaises(TypeError, operator.and_)
116 self.assertRaises(TypeError, operator.and_, None, None)
117 self.assertTrue(operator.and_(0xf, 0xa) == 0xa)
/external/python/cpython3/Lib/test/
Dtest_operator.py131 self.assertRaises(TypeError, operator.and_)
132 self.assertRaises(TypeError, operator.and_, None, None)
133 self.assertEqual(operator.and_(0xf, 0xa), 0xa)
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator_typed_visitor.h820 Status HandleAnd(HloInstruction* and_) {
822 parent_->evaluated_[and_],
823 ElementWiseBinaryOp(and_, [](ElementwiseT lhs_el, ElementwiseT rhs_el) {
831 Status HandleAnd(HloInstruction* and_) {
832 return UnsupportedTypeError(and_);
838 Status HandleAnd(HloInstruction* and_) {
839 return UnsupportedTypeError(and_);
842 Status HandleAnd(HloInstruction* and_) override {
843 return HandleAnd<ElementwiseT>(and_);
/external/python/cpython3/Doc/library/
Doperator.rst98 .. function:: and_(a, b)
382 | Bitwise And | ``a & b`` | ``and_(a, b)`` |
/external/swiftshader/third_party/subzero/src/
DIceAssemblerMIPS32.h133 void and_(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt);
/external/python/cpython2/Doc/library/
Doperator.rst99 .. function:: and_(a, b)
632 | Bitwise And | ``a & b`` | ``and_(a, b)`` |
/external/protobuf/python/google/protobuf/internal/
Dtest_util.py830 return NonStandardInteger(operator.and_(self.val, y))
839 return NonStandardInteger(operator.and_(y, self.val))
/external/python/cpython2/Modules/
Doperator.c403 spam2(and_,__and__, "and_(a, b) -- Same as a & b.")
/external/rust/crates/chrono/
DCHANGELOG.md706 - Fixed a bug that `Date::and_*` methods with an offset that can change the date are
717 - `LocalResult::and_*` methods have been added.
/external/vixl/src/aarch64/
Dassembler-aarch64.h697 void and_(const Register& rd, const Register& rn, const Operand& operand);
2701 void and_(const VRegister& vd, const VRegister& vn, const VRegister& vm);
3616 void and_(const PRegisterWithLaneSize& pd,
3622 void and_(const ZRegister& zd,
3628 void and_(const ZRegister& zd, const ZRegister& zn, uint64_t imm);
3631 void and_(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm);

123