Searched refs:d_hi (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/unicode-width/scripts/ |
D | unicode.py | 152 d_hi = 0 157 d_hi = m.group(1) 164 d_hi = m.group(2) 172 d_hi = int(d_hi, 16) 175 widths[width].append((d_lo, d_hi))
|
/external/rust/crates/unicode-segmentation/scripts/ |
D | unicode.py | 167 d_hi = 0 171 d_hi = m.group(1) 177 d_hi = m.group(2) 184 d_hi = int(d_hi, 16) 187 props[prop].append((d_lo, d_hi))
|
/external/FXdiv/include/ |
D | fxdiv.h | 287 const uint64_t d_hi = (uint32_t) (d >> 32); in fxdiv_init_uint64_t() local 291 uint64_t q1 = u_hi / d_hi; in fxdiv_init_uint64_t() 292 uint64_t r1 = u_hi - q1 * d_hi; in fxdiv_init_uint64_t() 296 r1 += d_hi; in fxdiv_init_uint64_t() 306 uint64_t q0 = u_hi / d_hi; in fxdiv_init_uint64_t() 307 uint64_t r0 = u_hi - q0 * d_hi; in fxdiv_init_uint64_t() 311 r0 += d_hi; in fxdiv_init_uint64_t()
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | fdct32x32_neon.c | 670 int32x4_t d_hi[32]; in dct_body_second_pass() local 938 out[1] = add_round_shift_s32(d_lo[1], d_hi[1]); in dct_body_second_pass() 939 out[31] = add_round_shift_s32(d_lo[31], d_hi[31]); in dct_body_second_pass() 942 out[17] = add_round_shift_s32(d_lo[17], d_hi[17]); in dct_body_second_pass() 943 out[15] = add_round_shift_s32(d_lo[15], d_hi[15]); in dct_body_second_pass() 946 out[9] = add_round_shift_s32(d_lo[9], d_hi[9]); in dct_body_second_pass() 947 out[23] = add_round_shift_s32(d_lo[23], d_hi[23]); in dct_body_second_pass() 950 out[25] = add_round_shift_s32(d_lo[25], d_hi[25]); in dct_body_second_pass() 951 out[7] = add_round_shift_s32(d_lo[7], d_hi[7]); in dct_body_second_pass() 954 out[5] = add_round_shift_s32(d_lo[5], d_hi[5]); in dct_body_second_pass() [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_int64.c | 508 nir_ssa_def *d_hi = nir_unpack_64_2x32_split_y(b, d); in lower_udiv64_mod64() local 522 nir_iand(b, nir_ieq_imm(b, d_hi, 0), nir_uge(b, n_hi, d_lo)); in lower_udiv64_mod64() 559 nir_ssa_def *log2_denom = nir_ufind_msb(b, d_hi); in lower_udiv64_mod64() 562 d = nir_pack_64_2x32_split(b, d_lo, d_hi); in lower_udiv64_mod64() 600 nir_ssa_def *d_hi = nir_unpack_64_2x32_split_y(b, d); in lower_idiv64() local 603 nir_ilt(b, d_hi, nir_imm_int(b, 0))); in lower_idiv64() 621 nir_ssa_def *d_hi = nir_unpack_64_2x32_split_y(b, d); in lower_imod64() local 623 nir_ssa_def *d_is_neg = nir_ilt(b, d_hi, nir_imm_int(b, 0)); in lower_imod64()
|
/external/webp/src/dsp/ |
D | dec_neon.c | 1579 const int16x8_t d_hi = vreinterpretq_s16_u16(vsubl_u8(vget_high_u8(T), TL)); in TM16_NEON() local 1591 const int16x8_t r0_hi = vaddq_s16(L0, d_hi); in TM16_NEON() 1592 const int16x8_t r1_hi = vaddq_s16(L1, d_hi); in TM16_NEON() 1593 const int16x8_t r2_hi = vaddq_s16(L2, d_hi); in TM16_NEON() 1594 const int16x8_t r3_hi = vaddq_s16(L3, d_hi); in TM16_NEON()
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | inverse_transform_10bit_neon.cc | 1874 const uint16x4_t d_hi = vqmovun_s32(vreinterpretq_s32_u32(b_hi)); in StoreToFrameWithRound() local 1875 vst1q_u16(frame[y] + x, vminq_u16(vcombine_u16(d, d_hi), in StoreToFrameWithRound()
|
/external/libgav1/libgav1/src/dsp/x86/ |
D | inverse_transform_sse4.cc | 2126 const __m128i d_hi = _mm_cvtepu8_epi16(_mm_srli_si128(frame_data, 8)); in StoreToFrameWithRound() local 2128 const __m128i e_hi = _mm_adds_epi16(d_hi, c_hi); in StoreToFrameWithRound()
|