Lines Matching defs:significand
717 nir_ssa_def *significand =
721 * - if the non-representable part of the significand is higher than half
722 * the minimum representable significand, we round-up
723 * - if the non-representable part of the significand is equal to half the
724 * minimum representable significand and the representable part of the
725 * significand is odd, we round-up
734 nir_ssa_def *is_odd = nir_i2b(b, nir_iand(b, significand, nir_imm_int(b, 1)));
737 significand = nir_iadd(b, significand, nir_b2i32(b, round_up));
742 res = nir_fmul(b, nir_u2f32(b, significand),
745 res = nir_fmul(b, nir_u2f16(b, significand),