Searched refs:abs_x (Results 1 - 5 of 5) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_frexp.c | 35 nir_ssa_def *abs_x = nir_fabs(b, x); in lower_frexp_sig() local 96 nir_flt(b, zero, abs_x), in lower_frexp_sig() 110 nir_flt(b, zero, abs_x), in lower_frexp_sig() 122 nir_ssa_def *abs_x = nir_fabs(b, x); in lower_frexp_exp() local 124 nir_ssa_def *is_not_zero = nir_fneu(b, abs_x, zero); in lower_frexp_exp() 135 exponent = nir_i2i32(b, nir_iadd(b, nir_ushr(b, abs_x, exponent_shift), in lower_frexp_exp() 143 exponent = nir_iadd(b, nir_ushr(b, abs_x, exponent_shift), in lower_frexp_exp() 152 nir_ssa_def *abs_upper_x = nir_unpack_64_2x32_split_y(b, abs_x); in lower_frexp_exp()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_glsl450.c | 174 nir_ssa_def *abs_x = nir_fabs(b, x); in build_asin() local 176 nir_ssa_def *p0_plus_xp1 = nir_ffma_imm12(b, abs_x, p1, p0); in build_asin() 179 nir_ffma_imm2(b, abs_x, in build_asin() 180 nir_ffma_imm2(b, abs_x, p0_plus_xp1, M_PI_4f - 1.0f), in build_asin() 185 nir_fsqrt(b, nir_fsub(b, one, abs_x)), in build_asin() 203 return nir_bcsel(b, nir_flt(b, abs_x, half), result1, result0); in build_asin()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_tgsi_action.c | 440 LLVMValueRef abs_x, log_abs_x, flr_log_abs_x, ex2_flr_log_abs_x; in log_emit() local 443 abs_x = lp_build_abs(&bld_base->base, emit_data->args[0] /* src0.x */); in log_emit() 447 abs_x); in log_emit() 461 TGSI_OPCODE_DIV, abs_x, ex2_flr_log_abs_x); in log_emit()
|
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | mpdecimal.c | 6601 MPD_NEW_SHARED(abs_x, x); in _qcheck_pow_bounds() 6605 mpd_set_positive(&abs_x); in _qcheck_pow_bounds() 6608 lb_zeta = _lower_bound_zeta(&abs_x, status); in _qcheck_pow_bounds() 6614 sign = (mpd_adjexp(&abs_x) < 0) ^ mpd_sign(y); in _qcheck_pow_bounds()
|
/third_party/python/Objects/ |
H A D | longobject.c | 209 digit abs_x = x < 0 ? -x : x; in _PyLong_FromMedium() local 211 v->ob_digit[0] = abs_x; in _PyLong_FromMedium()
|
Completed in 24 milliseconds