Home
last modified time | relevance | path

Searched refs:is_not_zero (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/llvm/test/Verifier/
Dcttz-undef-arg.ll6 define void @f(i32 %x, i1 %is_not_zero) {
9 ; CHECK-NEXT: i1 %is_not_zero
11 call i32 @llvm.ctlz.i32(i32 %x, i1 %is_not_zero)
14 ; CHECK-NEXT: i1 %is_not_zero
16 call i32 @llvm.cttz.i32(i32 %x, i1 %is_not_zero)
/external/mesa3d/src/compiler/nir/
Dnir_lower_frexp.c38 nir_ssa_def *is_not_zero = nir_fneu(b, abs_x, zero); in lower_frexp_sig() local
96 nir_bcsel(b, is_not_zero, exponent_value, zero32)); in lower_frexp_sig()
103 nir_bcsel(b, is_not_zero, exponent_value, zero)); in lower_frexp_sig()
112 nir_ssa_def *is_not_zero = nir_fneu(b, abs_x, zero); in lower_frexp_exp() local
124 nir_bcsel(b, is_not_zero, exponent_bias, zero))); in lower_frexp_exp()
132 nir_bcsel(b, is_not_zero, exponent_bias, zero)); in lower_frexp_exp()
143 nir_bcsel(b, is_not_zero, exponent_bias, zero32)); in lower_frexp_exp()
Dnir_search_helpers.h422 is_not_zero(struct hash_table *ht, nir_alu_instr *instr, unsigned src, in is_not_zero() function
/external/llvm/test/Verifier/
Dcttz-undef-arg.ll6 define void @f(i32 %x, i1 %is_not_zero) {
10 call i32 @llvm.ctlz.i32(i32 %x, i1 %is_not_zero)
14 call i32 @llvm.cttz.i32(i32 %x, i1 %is_not_zero)
/external/mesa3d/src/compiler/glsl/
Dlower_instructions.cpp690 ir_variable *is_not_zero = in dfrexp_sig_to_arith() local
695 i.insert_before(is_not_zero); in dfrexp_sig_to_arith()
697 assign(is_not_zero, in dfrexp_sig_to_arith()
727 csel(swizzle(is_not_zero, elem, 1), in dfrexp_sig_to_arith()
763 ir_variable *is_not_zero = in dfrexp_exp_to_arith() local
772 i.insert_before(is_not_zero); in dfrexp_exp_to_arith()
774 i.insert_before(assign(is_not_zero, nequal(absval->clone(ir, NULL), dzero))); in dfrexp_exp_to_arith()
791 ir->operands[0] = new(ir) ir_dereference_variable(is_not_zero); in dfrexp_exp_to_arith()
Dbuiltin_functions.cpp7001 ir_variable *is_not_zero = body.make_temp(bvec, "is_not_zero"); in _frexp() local
7002 body.emit(assign(is_not_zero, nequal(abs(x), imm(0.0f, vec_elem)))); in _frexp()
7008 body.emit(assign(exponent, add(exponent, csel(is_not_zero, exponent_bias, in _frexp()
7014 body.emit(assign(bits, bit_or(bits, csel(is_not_zero, exponent_value, in _frexp()
/external/boringssl/src/crypto/fipsmodule/ec/
Dp256-x86_64.c114 static BN_ULONG is_not_zero(BN_ULONG in) { in is_not_zero() function
340 copy_conditional(p.p.Z, ONE, is_not_zero(wvalue >> 1)); in ecp_nistz256_point_mul_base()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/ec/
Dp256-x86_64.c114 static BN_ULONG is_not_zero(BN_ULONG in) { in is_not_zero() function
339 copy_conditional(p.p.Z, ONE, is_not_zero(wvalue >> 1)); in ecp_nistz256_point_mul_base()
/external/mesa3d/prebuilt-intermediates/nir/
Dnir_opt_algebraic.c28340 (is_not_zero),