Home
last modified time | relevance | path

Searched refs:x_hi (Results 1 - 7 of 7) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_int64.c113 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); in lower_bcsel64() local
118 nir_bcsel(b, cond, x_hi, y_hi)); in lower_bcsel64()
125 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); in lower_inot64() local
127 return nir_pack_64_2x32_split(b, nir_inot(b, x_lo), nir_inot(b, x_hi)); in lower_inot64()
134 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); in lower_iand64() local
139 nir_iand(b, x_hi, y_hi)); in lower_iand64()
146 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); in lower_ior64() local
151 nir_ior(b, x_hi, y_hi)); in lower_ior64()
158 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); in lower_ixor64() local
163 nir_ixor(b, x_hi, y_h in lower_ixor64()
189 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_ishl64() local
233 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_ishr64() local
276 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_ushr64() local
299 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_iadd64() local
314 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_isub64() local
338 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_iabs64() local
347 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_int64_compare() local
414 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_imul64() local
488 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_isign64() local
679 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_ufind_msb64() local
789 nir_ssa_def *x_hi = nir_unpack_64_2x32_split_y(b, x); lower_bit_count64() local
1170 nir_ssa_def *x_hi = lower_scan_iadd64() local
[all...]
/third_party/FreeBSD/lib/msun/ld128/
H A Ds_expl.c205 long double hx2_hi, hx2_lo, q, r, r1, t, twomk, twopk, x_hi; in expm1l() local
261 x_hi = (float)x; in expm1l()
262 x_lo = x - x_hi; in expm1l()
263 hx2_hi = x_hi * x_hi / 2; in expm1l()
264 hx2_lo = x_lo * (x + x_hi) / 2; in expm1l()
266 RETURN2PI(hx2_hi + x_hi, hx2_lo + x_lo + q); in expm1l()
H A Ds_logl.c512 long double x_hi; in k_logl()
516 * Split x into x_hi + x_lo to calculate x*G(i)-1 exactly. in k_logl()
520 INSERT_LDBL128_WORDS(x_hi, 0x3fff, lx, in k_logl()
522 x_lo = x - x_hi; in k_logl()
523 d = x_hi * G(i) - 1 + x_lo * G(i); in k_logl()
630 long double x_hi; in log1pl()
633 INSERT_LDBL128_WORDS(x_hi, 0x3fff, lx, in log1pl()
635 x_lo = x - x_hi; in log1pl()
636 d_hi = x_hi * G(i) - 1 + x_lo * G(i); in log1pl()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_s3tc.c514 LLVMValueRef x, x_lo, x_hi, delta_lo, delta_hi; in lp_build_lerp23() local
530 lp_build_unpack2(gallivm, type, i16_type, x, &x_lo, &x_hi); in lp_build_lerp23()
537 mul_hi = LLVMBuildMul(builder, x_hi, delta_hi, ""); in lp_build_lerp23()
540 x_hi = LLVMBuildLShr(builder, mul_hi, lp_build_const_int_vec(gallivm, i16_type, 8), ""); in lp_build_lerp23()
542 tmp = lp_build_pack2(gallivm, i16_type, type, x_lo, x_hi); in lp_build_lerp23()
546 x_hi = LLVMBuildLShr(builder, mul_hi, lp_build_const_int_vec(gallivm, i16_type, 7), ""); in lp_build_lerp23()
549 x_hi = LLVMBuildAnd(builder, x_hi, lp_build_const_int_vec(gallivm, i16_type, 0xff), ""); in lp_build_lerp23()
550 tmp = lp_build_pack2(gallivm, i16_type, type, x_lo, x_hi); in lp_build_lerp23()
/third_party/vixl/src/aarch64/
H A Dsimulator-aarch64.cc995 uint64_t x_hi = x >> 32; in Simulator() local
1000 uint64_t t2 = x_hi * y_lo; in Simulator()
1004 vixl_uint128_t d = std::make_pair(x_hi * y_hi, 0); in Simulator()
/third_party/astc-encoder/Source/
H A Dwuffs-v0.3.c14102 // 64 bits of the product, x_hi, must therefore be at least (1<<62). in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14104 // As a consequence, x_hi has either 0 or 1 leading zeroes. Shifting x_hi in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14105 // right by either 9 or 10 bits (depending on x_hi's MSB) will therefore in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14108 uint64_t x_hi = x.hi; in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() local
14117 // If overflow occurs, that adds 1 to x_hi. Since we're about to shift right in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14123 // - x_hi = 0x4563918244F3FFFF in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14126 if (((x_hi & 0x1FF) == 0x1FF) && ((x_lo + man) < man)) { in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14142 // - x_hi = 0x70B7E3696DB29FFF in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
14146 uint64_t merged_hi = x_hi; in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
[all...]
/third_party/skia/third_party/externals/wuffs/release/c/
H A Dwuffs-v0.3.c13206 // 64 bits of the product, x_hi, must therefore be at least (1<<62). in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13208 // As a consequence, x_hi has either 0 or 1 leading zeroes. Shifting x_hi in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13209 // right by either 9 or 10 bits (depending on x_hi's MSB) will therefore in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13212 uint64_t x_hi = x.hi; in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() local
13221 // If overflow occurs, that adds 1 to x_hi. Since we're about to shift right in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13227 // - x_hi = 0x4563918244F3FFFF in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13230 if (((x_hi & 0x1FF) == 0x1FF) && ((x_lo + man) < man)) { in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13246 // - x_hi = 0x70B7E3696DB29FFF in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
13250 uint64_t merged_hi = x_hi; in wuffs_base__private_implementation__parse_number_f64_eisel_lemire()
[all...]

Completed in 90 milliseconds