Searched refs:a_hi (Results 1 – 8 of 8) sorted by relevance
/external/eigen/Eigen/src/Core/arch/NEON/ |
D | PacketMath.h | 315 float32x2_t a_lo, a_hi; 320 a_hi = vget_high_f32(a_r64); 321 return vcombine_f32(a_hi, a_lo); 324 int32x2_t a_lo, a_hi; 329 a_hi = vget_high_s32(a_r64); 330 return vcombine_s32(a_hi, a_lo); 338 float32x2_t a_lo, a_hi, sum; 341 a_hi = vget_high_f32(a); 342 sum = vpadd_f32(a_lo, a_hi); 369 int32x2_t a_lo, a_hi, sum; [all …]
|
D | Complex.h | 156 float32x2_t a_lo, a_hi; 160 a_hi = vget_high_f32(a.v); 161 a_r128 = vcombine_f32(a_hi, a_lo);
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | bitdepth_conversion_avx2.h | 34 const __m256i a_hi = _mm256_mulhi_epi16(a, one); in store_tran_low() local 36 const __m256i a_1 = _mm256_unpacklo_epi16(a_lo, a_hi); in store_tran_low() 37 const __m256i a_2 = _mm256_unpackhi_epi16(a_lo, a_hi); in store_tran_low()
|
D | bitdepth_conversion_sse2.h | 35 const __m128i a_hi = _mm_mulhi_epi16(a, one); in store_tran_low() local 37 const __m128i a_1 = _mm_unpacklo_epi16(a_lo, a_hi); in store_tran_low() 38 const __m128i a_2 = _mm_unpackhi_epi16(a_lo, a_hi); in store_tran_low()
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | sad_neon.c | 193 const uint8x16_t a_hi = vld1q_u8(a + 16); in sad32x() local 200 abs = vabal_u8(abs, vget_low_u8(a_hi), vget_low_u8(b_hi)); in sad32x() 201 abs = vabal_u8(abs, vget_high_u8(a_hi), vget_high_u8(b_hi)); in sad32x() 214 const uint8x16_t a_hi = vld1q_u8(a + 16); in sad32x_avg() local 226 abs = vabal_u8(abs, vget_low_u8(a_hi), vget_low_u8(avg_hi)); in sad32x_avg() 227 abs = vabal_u8(abs, vget_high_u8(a_hi), vget_high_u8(avg_hi)); in sad32x_avg()
|
D | fdct32x32_neon.c | 592 const int32x4_t a_lo, const int32x4_t a_hi, const int32x4_t b_lo, in butterfly_one_coeff_s32() argument 596 const int32x4_t a_hi_0 = vmulq_n_s32(a_hi, constant); in butterfly_one_coeff_s32() 618 const int32x4_t a_lo, const int32x4_t a_hi, const int32x4_t b_lo, in butterfly_two_coeff_s32() argument 623 const int32x4_t a1 = vmulq_n_s32(a_hi, constant0); in butterfly_two_coeff_s32() 625 const int32x4_t a3 = vmulq_n_s32(a_hi, constant1); in butterfly_two_coeff_s32() 649 const int32x4_t a_hi) { in add_round_shift_s32() argument 656 const uint32x4_t a_hi_u32 = vreinterpretq_u32_s32(a_hi); in add_round_shift_s32() 660 vshrn_n_s32(vqaddq_s32(vqaddq_s32(a_hi, a_hi_sign_s32), one), 2); in add_round_shift_s32()
|
/external/valgrind/memcheck/ |
D | mc_main.c | 3629 UWord a_hi = (UWord)(base + 128 - 1); in MC_() local 3630 tl_assert(a_lo < a_hi); // paranoia: detect overflow in MC_() 3631 if (LIKELY(a_hi <= MAX_PRIMARY_ADDRESS)) { in MC_() 3634 UWord pm_off_hi = get_primary_map_low_offset(a_hi); in MC_() 3683 UWord a_hi = (UWord)(base + 288 - 1); in MC_() local 3684 tl_assert(a_lo < a_hi); // paranoia: detect overflow in MC_() 3685 if (a_hi <= MAX_PRIMARY_ADDRESS) { in MC_() 3687 UWord pm_off_hi = get_primary_map_low_offset(a_hi); in MC_() 3826 UWord a_hi = (UWord)(base + 128 - 1); in MC_() local 3827 tl_assert(a_lo < a_hi); // paranoia: detect overflow in MC_() [all …]
|
D | mc_leakcheck.c | 270 Addr a_lo, a_hi; in find_chunk_for_OLD() local 275 a_hi = ((Addr)chunks[i]->data) + chunks[i]->szB; in find_chunk_for_OLD() 276 if (a_lo == a_hi) in find_chunk_for_OLD() 277 a_hi++; // Special case for szB 0. See find_chunk_for. in find_chunk_for_OLD() 278 if (a_lo <= ptr && ptr < a_hi) in find_chunk_for_OLD()
|