HomeSort by relevance Sort by last modified time
    Searched refs:_mm_and_si128 (Results 51 - 75 of 150) sorted by null

1 23 4 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
opt_random.h 93 __v.__i = _mm_and_si128(_mm_set_epi64x(__urng(),
123 __v.__i = _mm_and_si128(_mm_set_epi64x(__v1, __v2),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
opt_random.h 93 __v.__i = _mm_and_si128(_mm_set_epi64x(__urng(),
123 __v.__i = _mm_and_si128(_mm_set_epi64x(__v1, __v2),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
opt_random.h 93 __v.__i = _mm_and_si128(_mm_set_epi64x(__urng(),
123 __v.__i = _mm_and_si128(_mm_set_epi64x(__v1, __v2),
  /external/webp/src/dsp/
dec_sse2.c 344 const __m128i t2 = _mm_and_si128(t1, kFE); // set lsb of each byte to zero
372 a = _mm_and_si128(a, mask); // mask filter values we don't care about
402 t1 = _mm_and_si128(t1, *mask); // mask filter values we don't care about
417 t3 = _mm_and_si128(not_hev, t3); // if !hev
442 const __m128i f = _mm_and_si128(a, m);
450 const __m128i m = _mm_and_si128(not_hev, *mask);
451 const __m128i f = _mm_and_si128(a, m);
685 *mask = _mm_and_si128(thresh_mask, filter_mask);
    [all...]
rescaler_sse2.c 215 _mm_and_si128(_mm_slli_epi64(C2, 32 - WEBP_RESCALER_RFIX), mask);
217 _mm_and_si128(_mm_slli_epi64(C3, 32 - WEBP_RESCALER_RFIX), mask);
219 const __m128i D2 = _mm_and_si128(C2, mask);
220 const __m128i D3 = _mm_and_si128(C3, mask);
yuv_sse2.c 136 const __m128i rb2 = _mm_and_si128(rb1, mask_0xf0);
137 const __m128i ga2 = _mm_srli_epi16(_mm_and_si128(ga1, mask_0xf0), 4);
150 const __m128i r1 = _mm_and_si128(r0, _mm_set1_epi8(0xf8));
151 const __m128i b1 = _mm_and_si128(_mm_srli_epi16(b0, 3), _mm_set1_epi8(0x1f));
152 const __m128i g1 = _mm_srli_epi16(_mm_and_si128(g0, _mm_set1_epi8(0xe0)), 5);
153 const __m128i g2 = _mm_slli_epi16(_mm_and_si128(g0, _mm_set1_epi8(0x1c)), 3);
    [all...]
enc_sse2.c 722 const __m128i lsb = _mm_and_si128(_mm_xor_si128(ABCDEFGH, CDEFGH00), one);
760 const __m128i lsb = _mm_and_si128(_mm_xor_si128(ABCDEFGH, CDEFGHH0), one);
782 const __m128i lsb = _mm_and_si128(_mm_xor_si128(IXABCD, ABCD0), one);
804 const __m128i lsb1 = _mm_and_si128(_mm_xor_si128(avg1, avg2), one);
808 const __m128i lsb2 = _mm_and_si128(abbc, lsb1);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dvec.h 71 M128& operator&=(const M128 &a) { return *this = (M128) _mm_and_si128(vec,a); }
77 inline M128 operator&(const M128 &a,const M128 &b) { return _mm_and_si128(a,b); }
89 I128vec1& operator&=(const M128 &a) { return *this = (I128vec1) _mm_and_si128(vec,a); }
109 I64vec2& operator&=(const M128 &a) { return *this = (I64vec2) _mm_and_si128(vec,a); }
150 I32vec4& operator&=(const M128 &a) { return *this = (I32vec4) _mm_and_si128(vec,a); }
185 Is32vec4& operator&=(const M128 &a) { return *this = (Is32vec4) _mm_and_si128(vec,a); }
250 Iu32vec4& operator&=(const M128 &a) { return *this = (Iu32vec4) _mm_and_si128(vec,a); }
306 I16vec8& operator&=(const M128 &a) { return *this = (I16vec8) _mm_and_si128(vec,a); }
348 Is16vec8& operator&=(const M128 &a) { return *this = (Is16vec8) _mm_and_si128(vec,a); }
433 Iu16vec8& operator&=(const M128 &a) { return *this = (Iu16vec8) _mm_and_si128(vec,a);
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 301 emm2 = _mm_and_si128(emm2, p4i_not1);
304 emm0 = _mm_and_si128(emm2, p4i_4);
312 emm2 = _mm_and_si128(emm2, p4i_2);
393 emm2 = _mm_and_si128(emm2, p4i_not1);
402 emm2 = _mm_and_si128(emm2, p4i_2);
PacketMath.h 262 return _mm_or_si128(_mm_and_si128(mask,a),_mm_andnot_si128(mask,b));
275 return _mm_or_si128(_mm_and_si128(mask,a),_mm_andnot_si128(mask,b));
292 template<> EIGEN_STRONG_INLINE Packet4i pand<Packet4i>(const Packet4i& a, const Packet4i& b) { return _mm_and_si128(a,b); }
803 return _mm_or_si128(_mm_andnot_si128(false_mask, thenPacket), _mm_and_si128(false_mask, elsePacket));
    [all...]
  /external/libavc/common/x86/
ih264_iquant_itrans_recon_ssse3.c 297 temp0 = _mm_and_si128(temp0, sign_reg);
299 temp1 = _mm_and_si128(temp1, sign_reg);
533 //resq_r5_1 = _mm_and_si128(resq_r5_1,one_zero_mask);
534 //resq_r5_2 = _mm_and_si128(resq_r5_2,one_zero_mask);
556 //resq_r6_1 = _mm_and_si128(resq_r6_1,one_zero_mask);
557 //resq_r6_2 = _mm_and_si128(resq_r6_2,one_zero_mask);
563 //resq_r6_1 = _mm_and_si128(resq_r6_1,one_zero_mask);
564 //resq_r6_2 = _mm_and_si128(resq_r6_2,one_zero_mask);
    [all...]
  /external/skia/src/opts/
SkNx_sse.h 216 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
237 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
286 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
306 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
374 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
464 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
484 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
552 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
594 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
Sk4px_SSE2.h 96 return Sk16b(_mm_and_si128(_mm_set1_epi32(0xFF << SK_A32_SHIFT), this->fVec));
SkBitmapProcState_opts_SSSE3.cpp 58 const __m128i x1_wide = _mm_and_si128(xx, mask_3FFF);
63 __m128i all_x = _mm_and_si128(_mm_srli_epi32(xx, 14), mask_000F);
105 __m128i xy1_wide = _mm_and_si128(xy_wide, mask_3FFF);
113 __m128i all_xy = _mm_and_si128(_mm_srli_epi32(xy_wide, 14), mask_000F);
  /external/skqp/src/opts/
SkNx_sse.h 209 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
230 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
279 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
299 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
367 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
457 AI SkNx operator & (const SkNx& o) const { return _mm_and_si128(fVec, o.fVec); }
477 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
545 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
587 return _mm_or_si128(_mm_and_si128 (fVec, t.fVec),
Sk4px_SSE2.h 96 return Sk16b(_mm_and_si128(_mm_set1_epi32(0xFF << SK_A32_SHIFT), this->fVec));
SkBitmapProcState_opts_SSSE3.cpp 58 const __m128i x1_wide = _mm_and_si128(xx, mask_3FFF);
63 __m128i all_x = _mm_and_si128(_mm_srli_epi32(xx, 14), mask_000F);
105 __m128i xy1_wide = _mm_and_si128(xy_wide, mask_3FFF);
113 __m128i all_xy = _mm_and_si128(_mm_srli_epi32(xy_wide, 14), mask_000F);
  /external/jemalloc/test/include/test/
SFMT-sse2.h 74 y = _mm_and_si128(y, mask);
  /external/libmpeg2/common/x86/
ideint_cac_ssse3.c 188 diff = _mm_and_si128(diff, mask);
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_ssse3.c 358 eob = _mm_and_si128(iscan0, nzero_coeff0);
359 eob1 = _mm_and_si128(iscan1, nzero_coeff1);
435 eob0 = _mm_and_si128(iscan0, nzero_coeff0);
436 eob1 = _mm_and_si128(iscan1, nzero_coeff1);
  /external/libvpx/libvpx/vpx_dsp/x86/
sum_squares_sse2.c 99 v_acc_q = _mm_add_epi64(v_acc_q, _mm_and_si128(v_acc_d, v_zext_mask_q));
  /external/libavc/encoder/x86/
ih264e_intra_modes_eval_ssse3.c     [all...]
  /external/opencv/cv/src/
cvstereobm.cpp 321 mind8 = _mm_xor_si128(mind8,_mm_and_si128(_mm_xor_si128(d8,mind8),mask));
328 mind8 = _mm_xor_si128(mind8,_mm_and_si128(_mm_xor_si128(mind82,mind8),mask));
334 mind8 = _mm_xor_si128(mind8,_mm_and_si128(_mm_xor_si128(mind82,mind8),mask));
340 mind8 = _mm_xor_si128(mind8,_mm_and_si128(_mm_xor_si128(mind82,mind8),mask));
361 mask = _mm_and_si128(mask, _mm_or_si128(_mm_cmpgt_epi16(d1,d8), _mm_cmpgt_epi16(d8,d2)));
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
simdintrin.h 128 __m128 resLow = _mm_permutevar_ps(aLo, _mm_and_si128(bLo, _mm_set1_epi32(0x3)));
129 __m128 resHi = _mm_permutevar_ps(aHi, _mm_and_si128(bLo, _mm_set1_epi32(0x3)));
133 resLow = _mm_permutevar_ps(aLo, _mm_and_si128(bHi, _mm_set1_epi32(0x3)));
134 resHi = _mm_permutevar_ps(aHi, _mm_and_si128(bHi, _mm_set1_epi32(0x3)));
301 SIMD_EMU_EPI(_simdemu_and_si, _mm_and_si128)
    [all...]
  /external/libopus/silk/x86/
NSQ_sse.c 367 xmm_tempa = _mm_and_si128( xmm_tempa, a_Q12_01234567 );
368 xmm_tempb = _mm_and_si128( xmm_tempb, a_Q12_89ABCDEF );
441 xmm_tempa = _mm_and_si128( xmm_tempa, AR_shp_Q13_76543210 );
    [all...]

Completed in 903 milliseconds

1 23 4 5 6