Searched refs:a_hi (Results 1 - 5 of 5) sorted by relevance

/external/eigen/Eigen/src/Core/arch/NEON/
H A DPacketMath.h229 float32x2_t a_lo, a_hi; local
234 a_hi = vget_high_f32(a_r64);
235 return vcombine_f32(a_hi, a_lo);
238 int32x2_t a_lo, a_hi; local
243 a_hi = vget_high_s32(a_r64);
244 return vcombine_s32(a_hi, a_lo);
251 float32x2_t a_lo, a_hi, sum; local
254 a_hi = vget_high_f32(a);
255 sum = vpadd_f32(a_lo, a_hi);
282 int32x2_t a_lo, a_hi, su local
315 float32x2_t a_lo, a_hi, prod; local
329 int32x2_t a_lo, a_hi, prod; local
345 float32x2_t a_lo, a_hi, min; local
357 int32x2_t a_lo, a_hi, min; local
370 float32x2_t a_lo, a_hi, max; local
382 int32x2_t a_lo, a_hi, max; local
[all...]
H A DComplex.h124 float32x2_t a_lo, a_hi; local
128 a_hi = vget_high_f32(a.v);
129 a_r128 = vcombine_f32(a_hi, a_lo);
/external/valgrind/memcheck/
H A Dmc_leakcheck.c267 Addr a_lo, a_hi; local
272 a_hi = ((Addr)chunks[i]->data) + chunks[i]->szB;
273 if (a_lo <= ptr && ptr < a_hi)
H A Dmc_main.c3584 UWord a_hi = (UWord)(base + 128 - 1); local
3585 tl_assert(a_lo < a_hi); // paranoia: detect overflow
3586 if (a_hi <= MAX_PRIMARY_ADDRESS) {
3589 SecMap* sm_hi = get_secmap_for_writing_low(a_hi);
3640 UWord a_hi = (UWord)(base + 288 - 1); local
3641 tl_assert(a_lo < a_hi); // paranoia: detect overflow
3642 if (a_hi <= MAX_PRIMARY_ADDRESS) {
3645 SecMap* sm_hi = get_secmap_for_writing_low(a_hi);
/external/opencv3/3rdparty/libwebp/dsp/
H A Ddec_sse2.c319 // q = q - delta and p = p + delta; where delta = [(a_hi >> 7), (a_lo >> 7)]
320 #define UPDATE_2PIXELS(pi, qi, a_lo, a_hi) { \
322 const __m128i a_hi7 = _mm_srai_epi16(a_hi, 7); \

Completed in 234 milliseconds