Home
last modified time | relevance | path

Searched refs:temp1 (Results 1 – 25 of 165) sorted by relevance

1234567

/external/libavc/common/x86/
Dih264_deblk_luma_ssse3.c104 __m128i temp1, temp2, temp3, temp4, temp5, temp6; in ih264_deblk_luma_vert_bs4_ssse3() local
122 temp1 = _mm_unpacklo_epi8(line1, line2); in ih264_deblk_luma_vert_bs4_ssse3()
127 line1 = _mm_unpacklo_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
128 line2 = _mm_unpackhi_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
146 temp1 = _mm_unpacklo_epi8(line1, line2); in ih264_deblk_luma_vert_bs4_ssse3()
151 line1 = _mm_unpacklo_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
152 line2 = _mm_unpackhi_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
156 temp1 = _mm_unpacklo_epi32(line1, line3); in ih264_deblk_luma_vert_bs4_ssse3()
161 p3_16x8 = _mm_unpacklo_epi64(p1_8x16, temp1); in ih264_deblk_luma_vert_bs4_ssse3()
162 p2_16x8 = _mm_unpackhi_epi64(p1_8x16, temp1); in ih264_deblk_luma_vert_bs4_ssse3()
[all …]
Dih264_ihadamard_scaling_sse42.c98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_sse42() local
127 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3 in ih264_ihadamard_scaling_4x4_sse42()
131 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2 in ih264_ihadamard_scaling_4x4_sse42()
132 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3 in ih264_ihadamard_scaling_4x4_sse42()
135 temp1 = _mm_add_epi32(src_r1, src_r2); in ih264_ihadamard_scaling_4x4_sse42()
139 src_r0 = _mm_add_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_sse42()
141 src_r2 = _mm_sub_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_sse42()
156 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1 in ih264_ihadamard_scaling_4x4_sse42()
160 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3 in ih264_ihadamard_scaling_4x4_sse42()
161 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d3 in ih264_ihadamard_scaling_4x4_sse42()
[all …]
Dih264_resi_trans_quant_sse42.c120 __m128i temp0, temp1, temp2, temp3; in ih264_resi_trans_quant_4x4_sse42() local
167 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 b0 c0 d0 a1 b1 c1 d1 in ih264_resi_trans_quant_4x4_sse42()
170 src_r0 = _mm_unpacklo_epi64(temp1, zero_8x16b); //a0 b0 c0 d0 in ih264_resi_trans_quant_4x4_sse42()
171 src_r1 = _mm_unpackhi_epi64(temp1, zero_8x16b); //a1 b1 c1 d1 in ih264_resi_trans_quant_4x4_sse42()
179 temp1 = _mm_add_epi16(src_r1, src_r2); in ih264_resi_trans_quant_4x4_sse42()
186 src_r0 = _mm_add_epi16(temp0, temp1); in ih264_resi_trans_quant_4x4_sse42()
191 src_r2 = _mm_sub_epi16(temp0, temp1); in ih264_resi_trans_quant_4x4_sse42()
205 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 a1 a2 a3 b0 b1 b2 b3 in ih264_resi_trans_quant_4x4_sse42()
208 src_r0 = _mm_unpacklo_epi64(temp1, zero_8x16b); //a0 a1 a2 a3 in ih264_resi_trans_quant_4x4_sse42()
209 src_r1 = _mm_unpackhi_epi64(temp1, zero_8x16b); //b0 b1 b2 b3 in ih264_resi_trans_quant_4x4_sse42()
[all …]
Dih264_deblk_chroma_ssse3.c105 __m128i temp1, temp2, temp3, temp4; in ih264_deblk_chroma_vert_bs4_ssse3() local
124 temp1 = _mm_unpacklo_epi16(linea, lineb); in ih264_deblk_chroma_vert_bs4_ssse3()
129 p1_uv_8x16 = _mm_unpacklo_epi32(temp1, temp2); in ih264_deblk_chroma_vert_bs4_ssse3()
131 q0_uv_8x16 = _mm_unpackhi_epi32(temp1, temp2); in ih264_deblk_chroma_vert_bs4_ssse3()
159 temp1 = _mm_slli_epi16(p1_uv_8x16, 1); in ih264_deblk_chroma_vert_bs4_ssse3()
161 temp1 = _mm_add_epi16(temp1, _mm_set1_epi16(2)); in ih264_deblk_chroma_vert_bs4_ssse3()
162 temp1 = _mm_add_epi16(temp1, temp2); in ih264_deblk_chroma_vert_bs4_ssse3()
163 p0_uv_8x16_1 = _mm_srai_epi16(temp1, 2); in ih264_deblk_chroma_vert_bs4_ssse3()
165 temp1 = _mm_slli_epi16(q1_uv_8x16, 1); in ih264_deblk_chroma_vert_bs4_ssse3()
167 temp1 = _mm_add_epi16(temp1, _mm_set1_epi16(2)); in ih264_deblk_chroma_vert_bs4_ssse3()
[all …]
Dih264_iquant_itrans_recon_sse42.c119 __m128i temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in ih264_iquant_itrans_recon_4x4_sse42() local
137temp1 = _mm_mullo_epi16(scalemat_r2_r3, dequant_r2_r3); //b00*q00 b01*q01 b02*q02 b03*q03 b10*q10 … in ih264_iquant_itrans_recon_4x4_sse42()
141 …temp6 = _mm_unpacklo_epi16(temp1, zero_8x16b); // b00*q00 0 b01*q01 0 b02*q02 0 b03*q03 0 -- 16 bi… in ih264_iquant_itrans_recon_4x4_sse42()
142 …temp7 = _mm_unpackhi_epi16(temp1, zero_8x16b); // b10*q10 0 b11*q11 0 b12*q12 0 b13*q13 0 -- 16 bi… in ih264_iquant_itrans_recon_4x4_sse42()
183 temp1 = _mm_unpacklo_epi32(resq_r0, resq_r1); //a0 b0 a1 b1 in ih264_iquant_itrans_recon_4x4_sse42()
187 resq_r0 = _mm_unpacklo_epi64(temp1, temp3); //a0 b0 c0 d0 in ih264_iquant_itrans_recon_4x4_sse42()
188 resq_r1 = _mm_unpackhi_epi64(temp1, temp3); //a1 b1 c1 d1 in ih264_iquant_itrans_recon_4x4_sse42()
196 temp1 = _mm_sub_epi32(resq_r0, resq_r2); in ih264_iquant_itrans_recon_4x4_sse42()
207 resq_r1 = _mm_add_epi32(temp1, temp2); in ih264_iquant_itrans_recon_4x4_sse42()
209 resq_r2 = _mm_sub_epi32(temp1, temp2); in ih264_iquant_itrans_recon_4x4_sse42()
[all …]
Dih264_ihadamard_scaling_ssse3.c98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_ssse3() local
129 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3 in ih264_ihadamard_scaling_4x4_ssse3()
133 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2 in ih264_ihadamard_scaling_4x4_ssse3()
134 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3 in ih264_ihadamard_scaling_4x4_ssse3()
137 temp1 = _mm_add_epi32(src_r1, src_r2); in ih264_ihadamard_scaling_4x4_ssse3()
141 src_r0 = _mm_add_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_ssse3()
143 src_r2 = _mm_sub_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_ssse3()
158 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1 in ih264_ihadamard_scaling_4x4_ssse3()
162 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3 in ih264_ihadamard_scaling_4x4_ssse3()
163 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d3 in ih264_ihadamard_scaling_4x4_ssse3()
[all …]
/external/libvpx/libvpx/test/
Ddct16x16_test.cc86 double temp1, temp2; in butterfly_16x16_dct_1d() local
116 temp1 = step[ 8] * C7; in butterfly_16x16_dct_1d()
118 output[ 8] = temp1 + temp2; in butterfly_16x16_dct_1d()
120 temp1 = step[ 9] * C11; in butterfly_16x16_dct_1d()
122 output[ 9] = temp1 - temp2; in butterfly_16x16_dct_1d()
124 temp1 = step[10] * C3; in butterfly_16x16_dct_1d()
126 output[10] = temp1 + temp2; in butterfly_16x16_dct_1d()
128 temp1 = step[11] * C15; in butterfly_16x16_dct_1d()
130 output[11] = temp1 - temp2; in butterfly_16x16_dct_1d()
132 temp1 = step[11] * C1; in butterfly_16x16_dct_1d()
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_idct.c101 int temp1, temp2; in idct4() local
103 temp1 = (input[0] + input[2]) * cospi_16_64; in idct4()
105 step[0] = dct_const_round_shift(temp1); in idct4()
107 temp1 = input[1] * cospi_24_64 - input[3] * cospi_8_64; in idct4()
109 step[2] = dct_const_round_shift(temp1); in idct4()
161 int temp1, temp2; in idct8() local
167 temp1 = input[1] * cospi_28_64 - input[7] * cospi_4_64; in idct8()
169 step1[4] = dct_const_round_shift(temp1); in idct8()
171 temp1 = input[5] * cospi_12_64 - input[3] * cospi_20_64; in idct8()
173 step1[5] = dct_const_round_shift(temp1); in idct8()
[all …]
/external/libvpx/libvpx/vp9/common/mips/dspr2/
Dvp9_itrans32_cols_dspr2.c37 int temp0, temp1, temp2, temp3; in vp9_idct32_cols_add_blk_dspr2() local
110 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
171 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
232 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
289 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
346 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
403 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
448 : [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
599 [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
659 [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vp9_idct32_cols_add_blk_dspr2()
[all …]
/external/libmpeg2/common/x86/
Dimpeg2_idct_recon_sse42_intr.c1854 __m128i temp0, temp1; in impeg2_idct_recon_dc_mismatch_sse42() local
1874 temp1 = _mm_cvtepi16_epi32(mismatch_stg2_additive); in impeg2_idct_recon_dc_mismatch_sse42()
1879 temp1 = _mm_add_epi32(temp1, value_4x32b); in impeg2_idct_recon_dc_mismatch_sse42()
1881 temp1 = _mm_add_epi32(temp1, round_stg2); in impeg2_idct_recon_dc_mismatch_sse42()
1884 temp1 = _mm_srai_epi32(temp1, IDCT_STG2_SHIFT); in impeg2_idct_recon_dc_mismatch_sse42()
1886 temp1 = _mm_add_epi32(temp1, pred_half1); in impeg2_idct_recon_dc_mismatch_sse42()
1888 temp0 = _mm_packus_epi32(temp0, temp1); in impeg2_idct_recon_dc_mismatch_sse42()
1889 temp0 = _mm_packus_epi16(temp0, temp1); in impeg2_idct_recon_dc_mismatch_sse42()
1900 temp1 = _mm_cvtepi16_epi32(mismatch_stg2_additive); in impeg2_idct_recon_dc_mismatch_sse42()
1905 temp1 = _mm_add_epi32(temp1, value_4x32b); in impeg2_idct_recon_dc_mismatch_sse42()
[all …]
/external/llvm/test/Transforms/InstCombine/
Dstrncmp-1.ll22 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
23 ret i32 %temp1
34 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
35 ret i32 %temp1
45 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
46 ret i32 %temp1
55 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
56 ret i32 %temp1
65 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 4)
66 ret i32 %temp1
[all …]
Dstrcmp-1.ll22 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
23 ret i32 %temp1
35 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
36 ret i32 %temp1
46 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
47 ret i32 %temp1
56 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
57 ret i32 %temp1
68 %temp1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0
70 %str2 = select i1 %b, i8* %temp1, i8* %temp2
[all …]
/external/eigen/blas/f2c/
Dsspmv.c24 real temp1, temp2; in sspmv_() local
224 temp1 = *alpha * x[j]; in sspmv_()
229 y[i__] += temp1 * ap[k]; in sspmv_()
234 y[j] = y[j] + temp1 * ap[kk + j - 1] + *alpha * temp2; in sspmv_()
243 temp1 = *alpha * x[jx]; in sspmv_()
249 y[iy] += temp1 * ap[k]; in sspmv_()
255 y[jy] = y[jy] + temp1 * ap[kk + j - 1] + *alpha * temp2; in sspmv_()
269 temp1 = *alpha * x[j]; in sspmv_()
271 y[j] += temp1 * ap[kk]; in sspmv_()
275 y[i__] += temp1 * ap[k]; in sspmv_()
[all …]
Ddspmv.c24 doublereal temp1, temp2; in dspmv_() local
224 temp1 = *alpha * x[j]; in dspmv_()
229 y[i__] += temp1 * ap[k]; in dspmv_()
234 y[j] = y[j] + temp1 * ap[kk + j - 1] + *alpha * temp2; in dspmv_()
243 temp1 = *alpha * x[jx]; in dspmv_()
249 y[iy] += temp1 * ap[k]; in dspmv_()
255 y[jy] = y[jy] + temp1 * ap[kk + j - 1] + *alpha * temp2; in dspmv_()
269 temp1 = *alpha * x[j]; in dspmv_()
271 y[j] += temp1 * ap[kk]; in dspmv_()
275 y[i__] += temp1 * ap[k]; in dspmv_()
[all …]
Dchpmv.c29 complex temp1, temp2; in chpmv_() local
249 temp1.r = q__1.r, temp1.i = q__1.i; in chpmv_()
257 q__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in chpmv_()
258 q__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in chpmv_()
275 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chpmv_()
292 temp1.r = q__1.r, temp1.i = q__1.i; in chpmv_()
301 q__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in chpmv_()
302 q__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in chpmv_()
320 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chpmv_()
342 temp1.r = q__1.r, temp1.i = q__1.i; in chpmv_()
[all …]
Dzhpmv.c29 doublecomplex temp1, temp2; in zhpmv_() local
249 temp1.r = z__1.r, temp1.i = z__1.i; in zhpmv_()
257 z__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in zhpmv_()
258 z__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in zhpmv_()
275 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhpmv_()
292 temp1.r = z__1.r, temp1.i = z__1.i; in zhpmv_()
301 z__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in zhpmv_()
302 z__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in zhpmv_()
320 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhpmv_()
342 temp1.r = z__1.r, temp1.i = z__1.i; in zhpmv_()
[all …]
Dzhbmv.c30 doublecomplex temp1, temp2; in zhbmv_() local
291 temp1.r = z__1.r, temp1.i = z__1.i; in zhbmv_()
301 z__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in zhbmv_()
302 z__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in zhbmv_()
318 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhbmv_()
334 temp1.r = z__1.r, temp1.i = z__1.i; in zhbmv_()
346 z__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in zhbmv_()
347 z__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in zhbmv_()
365 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhbmv_()
390 temp1.r = z__1.r, temp1.i = z__1.i; in zhbmv_()
[all …]
Dchbmv.c29 complex temp1, temp2; in chbmv_() local
290 temp1.r = q__1.r, temp1.i = q__1.i; in chbmv_()
300 q__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in chbmv_()
301 q__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in chbmv_()
317 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chbmv_()
333 temp1.r = q__1.r, temp1.i = q__1.i; in chbmv_()
345 q__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in chbmv_()
346 q__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in chbmv_()
364 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chbmv_()
389 temp1.r = q__1.r, temp1.i = q__1.i; in chbmv_()
[all …]
Dssbmv.c24 real temp1, temp2; in ssbmv_() local
267 temp1 = *alpha * x[j]; in ssbmv_()
274 y[i__] += temp1 * a[l + i__ + j * a_dim1]; in ssbmv_()
278 y[j] = y[j] + temp1 * a[kplus1 + j * a_dim1] + *alpha * temp2; in ssbmv_()
286 temp1 = *alpha * x[jx]; in ssbmv_()
295 y[iy] += temp1 * a[l + i__ + j * a_dim1]; in ssbmv_()
301 y[jy] = y[jy] + temp1 * a[kplus1 + j * a_dim1] + *alpha * in ssbmv_()
319 temp1 = *alpha * x[j]; in ssbmv_()
321 y[j] += temp1 * a[j * a_dim1 + 1]; in ssbmv_()
327 y[i__] += temp1 * a[l + i__ + j * a_dim1]; in ssbmv_()
[all …]
Ddsbmv.c24 doublereal temp1, temp2; in dsbmv_() local
265 temp1 = *alpha * x[j]; in dsbmv_()
272 y[i__] += temp1 * a[l + i__ + j * a_dim1]; in dsbmv_()
276 y[j] = y[j] + temp1 * a[kplus1 + j * a_dim1] + *alpha * temp2; in dsbmv_()
284 temp1 = *alpha * x[jx]; in dsbmv_()
293 y[iy] += temp1 * a[l + i__ + j * a_dim1]; in dsbmv_()
299 y[jy] = y[jy] + temp1 * a[kplus1 + j * a_dim1] + *alpha * in dsbmv_()
317 temp1 = *alpha * x[j]; in dsbmv_()
319 y[j] += temp1 * a[j * a_dim1 + 1]; in dsbmv_()
325 y[i__] += temp1 * a[l + i__ + j * a_dim1]; in dsbmv_()
[all …]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c51 int temp1, temp2; in vp8_short_idct4x4llm_dspr2() local
65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
67 c1 = temp1 - temp2; in vp8_short_idct4x4llm_dspr2()
69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
71 d1 = temp1 + temp2; in vp8_short_idct4x4llm_dspr2()
97 temp1 = (ip[6] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
99 c1 = temp1 - temp2; in vp8_short_idct4x4llm_dspr2()
101 temp1 = ip[6] + ((ip[6] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
103 d1 = temp1 + temp2; in vp8_short_idct4x4llm_dspr2()
135 temp1 = (ip[1] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
[all …]
/external/webp/src/dsp/
Denc_mips32.c121 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in ITransformOne() local
128 VERTICAL_PASS(0, 16, 8, 24, temp4, temp0, temp1, temp2, temp3) in ITransformOne()
134 HORIZONTAL_PASS(16, 17, 18, 19, temp1, temp5, temp9, temp13) in ITransformOne()
138 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in ITransformOne()
195 int temp0, temp1, temp2, temp3, temp4, temp5; in QuantizeBlock() local
225 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in QuantizeBlock()
362 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in Disto4x4() local
381 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in Disto4x4()
477 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform() local
486 HORIZONTAL_PASS( 0, 1, 2, 3, temp0, temp1, temp2, temp3) in FTransform()
[all …]
Dlossless_mips32.c111 int i, temp0, temp1; in ExtraCost() local
130 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in ExtraCost()
136 return (double)((int64_t)temp0 << 32 | temp1); in ExtraCost()
157 int i, temp0, temp1, temp2, temp3; in ExtraCostCombined() local
182 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in ExtraCostCombined()
189 return (double)((int64_t)temp0 << 32 | temp1); in ExtraCostCombined()
212 : [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), \
226 int temp0, temp1, temp2, temp3; in HuffmanCostCount() local
251 int temp0, temp1, temp2, temp3; in HuffmanCostCombinedCount() local
313 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), \
[all …]
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/
Dnonmember_swap.pass.cpp24 std::string temp1 = get_temp_file_name(); in main() local
27 std::ofstream fs1(temp1.c_str()); in main()
36 std::ifstream fs(temp1.c_str()); in main()
43 std::remove(temp1.c_str()); in main()
54 std::wofstream fs1(temp1.c_str()); in main()
63 std::wifstream fs(temp1.c_str()); in main()
70 std::remove(temp1.c_str()); in main()
Dmember_swap.pass.cpp23 std::string temp1 = get_temp_file_name(); in main() local
26 std::ofstream fs1(temp1.c_str()); in main()
35 std::ifstream fs(temp1.c_str()); in main()
42 std::remove(temp1.c_str()); in main()
53 std::wofstream fs1(temp1.c_str()); in main()
62 std::wifstream fs(temp1.c_str()); in main()
69 std::remove(temp1.c_str()); in main()

1234567