Home
last modified time | relevance | path

Searched refs:iand (Results 1 – 20 of 20) sorted by relevance

/external/mesa3d/src/compiler/nir/
Dnir_loop_analyze.c907 nir_ssa_scalar iand = nir_ssa_scalar_chase_alu_src(*cond, 0); in try_find_trip_count_vars_in_iand() local
912 if (!nir_ssa_scalar_is_alu(iand) || !nir_ssa_scalar_is_const(zero)) { in try_find_trip_count_vars_in_iand()
915 zero = iand; in try_find_trip_count_vars_in_iand()
916 iand = tmp; in try_find_trip_count_vars_in_iand()
928 if (!nir_ssa_scalar_is_alu(iand)) in try_find_trip_count_vars_in_iand()
931 if (nir_ssa_scalar_alu_op(iand) != nir_op_iand) in try_find_trip_count_vars_in_iand()
939 nir_ssa_scalar src = nir_ssa_scalar_chase_alu_src(iand, i); in try_find_trip_count_vars_in_iand()
Dnir_opt_uniform_atomics.c70 OP(and, iand) in parse_atomic_op()
Dnir_lower_int64.c731 nir_ssa_def *rem = COND_LOWER_OP(b, iand, x, rem_mask); in lower_2f()
/external/python/cpython3/Lib/
Doperator.py338 def iand(a, b): function
448 __iand__ = iand
/external/mesa3d/docs/relnotes/
D20.2.1.rst108 - nir/algebraic: optimize iand/ior of (n)eq zero when umax/umin not available
D19.1.0.rst1121 - nir: Use SM5 properties to optimize shift(a@32, iand(31, b))
1995 - nir/algebraic: Replace a pattern where iand with a Boolean is used as
4523 - nir: find induction/limit vars in iand instructions
D20.2.0.rst1271 - nir/algebraic: optimize iand/ior of (n)eq zero
1276 - nir/algebraic: add distributive rules for ior/iand
1277 - nir/algebraic: propagate b2i out of ior/iand
D20.1.0.rst760 - pan/bi: Handle iand/ior/ixor in NIR->BIR
2229 - nir/algebraic: Require operands to iand be 32-bit
D20.3.0.rst3047 - nir/algebraic: optimize iand/ior of (n)eq zero when umax/umin not available
4420 - nir/algebraic: optimize bitfield_select(a, b, 0) to iand(a, b)
/external/python/pybind11/include/pybind11/
Doperators.h145 PYBIND11_INPLACE_OPERATOR(iand, operator&=, l &= r)
/external/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler_nir_emit.c116 IOP(iand, AND, 0_X_1),
/external/mesa3d/src/panfrost/midgard/
Dmidgard_compile.c692 ALU_CASE_CMP(b2f32, iand); in emit_alu()
693 ALU_CASE_CMP(b2f16, iand); in emit_alu()
694 ALU_CASE_CMP(b2i32, iand); in emit_alu()
732 ALU_CASE(iand, iand); in emit_alu()
/external/python/cpython3/Doc/library/
Doperator.rst482 .. function:: iand(a, b)
485 ``a = iand(a, b)`` is equivalent to ``a &= b``.
/external/python/cpython2/Doc/library/
Doperator.rst326 .. function:: iand(a, b)
329 ``a = iand(a, b)`` is equivalent to ``a &= b``.
/external/mesa3d/src/intel/common/tests/
Dgen_mi_builder_test.cpp565 TEST_F(gen_mi_builder_test, iand) in TEST_F() argument
/external/python/cpython2/Modules/
Doperator.c415 spam2(iand,__iand__, "a = iand(a, b) -- Same as a &= b.")
/external/python/cpython2/Lib/test/
Dtest_operator.py492 self.assertEqual(operator.iand (c, 5), "iand")
/external/python/cpython3/Lib/test/
Dtest_operator.py470 self.assertEqual(operator.iand (c, 5), "iand")
/external/hyphenation-patterns/cy/
Dhyph-cy.pat.txt3135 4iand
/external/mesa3d/src/amd/compiler/
Daco_instruction_selection.cpp7263 CASEI(iand) in get_reduce_op()