Home
last modified time | relevance | path

Searched refs:t01 (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
DAtomics.ll9 %t01 = atomicrmw add i64* @sll, i64 1 monotonic
30 %t01 = atomicrmw add i64* @sll, i64 11 monotonic
31 store i64 %t01, i64* @sll, align 8
62 %t01 = atomicrmw xchg i64* @sll, i64 1 monotonic
63 store i64 %t01, i64* @sll, align 8
/external/llvm/test/CodeGen/Hexagon/
DAtomics.ll9 %t01 = atomicrmw add i64* @sll, i64 1 monotonic
30 %t01 = atomicrmw add i64* @sll, i64 11 monotonic
31 store i64 %t01, i64* @sll, align 8
62 %t01 = atomicrmw xchg i64* @sll, i64 1 monotonic
63 store i64 %t01, i64* @sll, align 8
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_highbd_iht8x8_add_sse4.c36 __m128i t00[2], t01[2], t10[2], t11[2]; in highbd_iadst_butterfly_sse4_1() local
43 t01[0] = _mm_mul_epi32(pair_c0, x1[0]); in highbd_iadst_butterfly_sse4_1()
44 t01[1] = _mm_mul_epi32(pair_c0, x1[1]); in highbd_iadst_butterfly_sse4_1()
52 s1[0] = _mm_sub_epi64(t10[0], t01[0]); in highbd_iadst_butterfly_sse4_1()
53 s1[1] = _mm_sub_epi64(t10[1], t01[1]); in highbd_iadst_butterfly_sse4_1()
Dvp9_highbd_iht16x16_add_sse4.c36 __m128i t00[2], t01[2], t10[2], t11[2]; in highbd_iadst_butterfly_sse4_1() local
43 t01[0] = _mm_mul_epi32(pair_c0, x1[0]); in highbd_iadst_butterfly_sse4_1()
44 t01[1] = _mm_mul_epi32(pair_c0, x1[1]); in highbd_iadst_butterfly_sse4_1()
52 s1[0] = _mm_sub_epi64(t10[0], t01[0]); in highbd_iadst_butterfly_sse4_1()
53 s1[1] = _mm_sub_epi64(t10[1], t01[1]); in highbd_iadst_butterfly_sse4_1()
/external/webrtc/webrtc/modules/video_coding/
Djitter_estimator.cc215 double t00, t01; in KalmanEstimateChannel() local
266 t01 = _thetaCov[0][1]; in KalmanEstimateChannel()
269 _thetaCov[0][1] = (1 - kalmanGain[0] * deltaFSBytes) * t01 - in KalmanEstimateChannel()
274 kalmanGain[1] * deltaFSBytes * t01; in KalmanEstimateChannel()
/external/clang/test/SemaCXX/
Dtype-traits.cpp399 int t01[T(__is_integral(bool))]; in is_integral() local
428 int t01[T(__is_floating_point(float))]; in is_floating_point() local
457 int t01[T(__is_arithmetic(float))]; in is_arithmetic() local
489 int t01[T(__is_complete_type(float))]; in is_complete_type() local
512 int t01[T(__is_void(void))]; in is_void() local
541 int t01[T(__is_array(IntAr))]; in is_array() local
579 int t01[T(__is_function(type_wrapper<void(void)>::type))]; in is_function() local
614 int t01[T(__is_reference(int&))]; in is_reference() local
625 int t01[T(__is_lvalue_reference(int&))]; in is_lvalue_reference() local
639 int t01[T(__is_rvalue_reference(const int&&))]; in is_rvalue_reference() local
[all …]
/external/aac/libAACenc/src/
Dbit_cnt.cpp488 INT t0, t1, t00, t01; in FDKaacEnc_countEsc() local
500 t01 = fixMin(t1, 16); in FDKaacEnc_countEsc()
501 bc11 += (INT)FDKaacEnc_huff_ltab11[t00][t01]; in FDKaacEnc_countEsc()
727 INT i, t0, t1, t2, t3, t00, t01; in FDKaacEnc_codeValues() local
916 t01 = fixMin(t1, 16); in FDKaacEnc_codeValues()
918 codeWord = FDKaacEnc_huff_ctab11[t00][t01]; in FDKaacEnc_codeValues()
919 codeLength = (INT)FDKaacEnc_huff_ltab11[t00][t01]; in FDKaacEnc_codeValues()
/external/libvpx/libvpx/vpx_dsp/arm/
Dhighbd_vpx_convolve8_neon.c368 uint16x8_t d01, d23, t01, t23; in vpx_highbd_convolve8_avg_horiz_neon() local
398 t01 = vcombine_u16(vqrshrun_n_s32(d0, 7), vqrshrun_n_s32(d1, 7)); in vpx_highbd_convolve8_avg_horiz_neon()
400 t01 = vminq_u16(t01, max); in vpx_highbd_convolve8_avg_horiz_neon()
402 transpose_u16_4x4q(&t01, &t23); in vpx_highbd_convolve8_avg_horiz_neon()
408 d01 = vrhaddq_u16(d01, t01); in vpx_highbd_convolve8_avg_horiz_neon()
771 uint16x8_t d01, d23, t01, t23; in vpx_highbd_convolve8_avg_vert_neon() local
811 t01 = vcombine_u16(vqrshrun_n_s32(d0, 7), vqrshrun_n_s32(d1, 7)); in vpx_highbd_convolve8_avg_vert_neon()
813 t01 = vminq_u16(t01, max); in vpx_highbd_convolve8_avg_vert_neon()
820 d01 = vrhaddq_u16(d01, t01); in vpx_highbd_convolve8_avg_vert_neon()
/external/clang/test/SemaTemplate/
Dtemplate-class-traits.cpp8 int t01[T(__is_polymorphic(InheritPolymorph<int>))]; variable
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/autohvx/
Dbitwise-pred-128b.ll15 ; CHECK-LABEL: t01
17 define <128 x i8> @t01(<128 x i8> %a0, <128 x i8> %a1) #0 {
Dbitwise-pred-64b.ll13 ; CHECK-LABEL: t01
15 define <64 x i8> @t01(<64 x i8> %a0, <64 x i8> %a1) #0 {
/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c112 const GLfloat t01[4], const GLfloat t11[4]) in lerp_rgba_2d()
114 result[0] = lerp_2d(a, b, t00[0], t10[0], t01[0], t11[0]); in lerp_rgba_2d()
115 result[1] = lerp_2d(a, b, t00[1], t10[1], t01[1], t11[1]); in lerp_rgba_2d()
116 result[2] = lerp_2d(a, b, t00[2], t10[2], t01[2], t11[2]); in lerp_rgba_2d()
117 result[3] = lerp_2d(a, b, t00[3], t10[3], t01[3], t11[3]); in lerp_rgba_2d()
1162 GLfloat t00[4], t10[4], t01[4], t11[4]; /* sampled texel colors */ in sample_2d_linear() local
1194 get_border_color(samp, img, t01); in sample_2d_linear()
1197 swImg->FetchTexel(swImg, i0, j1, 0, t01); in sample_2d_linear()
1206 lerp_rgba_2d(rgba, a, b, t00, t10, t01, t11); in sample_2d_linear()
1226 GLfloat t00[4], t10[4], t01[4], t11[4]; /* sampled texel colors */ in sample_2d_linear_repeat() local
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dvec_shuffle-37.ll17 define void @t01(double* %a0) nounwind ssp {
Dvec_shuffle-15.ll8 define <2 x i64> @t01(<2 x i64> %a, <2 x i64> %b) nounwind {
/external/epid-sdk/epid/common/math/src/
Dpairing.c2146 FfElement* t01 = NULL; in SquareCyclotomic() local
2191 result = NewFfElement(ps->Fq2, &t01); in SquareCyclotomic()
2242 result = SquareForFq4(ps, t01, t12, a[1], a[4]); in SquareCyclotomic()
2265 sts = ippsGFpAdd(t01->ipp_ff_elem, t01->ipp_ff_elem, e[2]->ipp_ff_elem, in SquareCyclotomic()
2268 sts = ippsGFpAdd(e[2]->ipp_ff_elem, t01->ipp_ff_elem, e[2]->ipp_ff_elem, in SquareCyclotomic()
2364 DeleteFfElement(&t01); in SquareCyclotomic()