Searched refs:a_lo (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; 319 a_lo = vget_low_f32(a_r64); 321 return vcombine_f32(a_hi, a_lo); 324 int32x2_t a_lo, a_hi; 328 a_lo = vget_low_s32(a_r64); 330 return vcombine_s32(a_hi, a_lo); 338 float32x2_t a_lo, a_hi, sum; 340 a_lo = vget_low_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; 159 a_lo = vget_low_f32(a.v); 161 a_r128 = vcombine_f32(a_hi, a_lo);
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | bitdepth_conversion_avx2.h | 35 const __m256i a_lo = _mm256_mullo_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 | 36 const __m128i a_lo = _mm_mullo_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 | 192 const uint8x16_t a_lo = vld1q_u8(a); in sad32x() local 198 abs = vabal_u8(abs, vget_low_u8(a_lo), vget_low_u8(b_lo)); in sad32x() 199 abs = vabal_u8(abs, vget_high_u8(a_lo), vget_high_u8(b_lo)); in sad32x() 213 const uint8x16_t a_lo = vld1q_u8(a); in sad32x_avg() local 224 abs = vabal_u8(abs, vget_low_u8(a_lo), vget_low_u8(avg_lo)); in sad32x_avg() 225 abs = vabal_u8(abs, vget_high_u8(a_lo), vget_high_u8(avg_lo)); 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 595 const int32x4_t a_lo_0 = vmulq_n_s32(a_lo, 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 622 const int32x4_t a0 = vmulq_n_s32(a_lo, constant0); in butterfly_two_coeff_s32() 624 const int32x4_t a2 = vmulq_n_s32(a_lo, constant1); in butterfly_two_coeff_s32() 648 static INLINE int16x8_t add_round_shift_s32(const int32x4_t a_lo, in add_round_shift_s32() argument 651 const uint32x4_t a_lo_u32 = vreinterpretq_u32_s32(a_lo); in add_round_shift_s32() 655 vshrn_n_s32(vqaddq_s32(vqaddq_s32(a_lo, a_lo_sign_s32), one), 2); in add_round_shift_s32()
|
/external/valgrind/memcheck/ |
D | mc_main.c | 3628 UWord a_lo = (UWord)(base); in MC_() local 3630 tl_assert(a_lo < a_hi); // paranoia: detect overflow in MC_() 3633 UWord pm_off_lo = get_primary_map_low_offset(a_lo); in MC_() 3639 SecMap* sm = get_secmap_for_writing_low(a_lo); in MC_() 3640 UWord v_off16 = SM_OFF_16(a_lo); in MC_() 3682 UWord a_lo = (UWord)(base); in MC_() local 3684 tl_assert(a_lo < a_hi); // paranoia: detect overflow in MC_() 3686 UWord pm_off_lo = get_primary_map_low_offset(a_lo); in MC_() 3692 SecMap* sm = get_secmap_for_writing_low(a_lo); in MC_() 3693 UWord v_off16 = SM_OFF_16(a_lo); in MC_() [all …]
|
D | mc_leakcheck.c | 270 Addr a_lo, a_hi; in find_chunk_for_OLD() local 274 a_lo = chunks[i]->data; in find_chunk_for_OLD() 276 if (a_lo == a_hi) in find_chunk_for_OLD() 278 if (a_lo <= ptr && ptr < a_hi) in find_chunk_for_OLD()
|