HomeSort by relevance Sort by last modified time
    Searched defs:temp3 (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/mesa3d/src/mesa/main/
streaming-load-memcpy.c 71 __m128i temp3 = _mm_stream_load_si128(src_cacheline + 2); local
76 _mm_store_si128(dst_cacheline + 2, temp3);
  /art/runtime/
common_dex_operations.h 225 std::string temp1, temp2, temp3; local
230 field->GetDeclaringClass()->GetDescriptor(&temp3));
  /external/libaom/libaom/av1/encoder/x86/
av1_txfm1d_sse4.h 66 __m128i temp3 = _mm_unpackhi_epi32(input[1 * stride], input[3 * stride]); local
70 output[2 * stride] = _mm_unpacklo_epi32(temp1, temp3);
71 output[3 * stride] = _mm_unpackhi_epi32(temp1, temp3);
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_polyphase_filter_window.cpp 138 int32 temp3 = pt_2[ SUBBANDS_NUMBER*15 ]; local
143 sum2 = fxp_mac32_Q32(sum2, temp3, winPtr[ 0]);
145 sum1 = fxp_msb32_Q32(sum1, temp3, winPtr[ 1]);
152 temp3 = pt_2[ SUBBANDS_NUMBER*13];
157 sum2 = fxp_mac32_Q32(sum2, temp3, winPtr[ 4]);
159 sum1 = fxp_msb32_Q32(sum1, temp3, winPtr[ 5]);
166 temp3 = pt_2[ SUBBANDS_NUMBER*11 ];
171 sum2 = fxp_mac32_Q32(sum2, temp3, winPtr[ 8]);
173 sum1 = fxp_msb32_Q32(sum1, temp3, winPtr[ 9]);
180 temp3 = pt_2[ SUBBANDS_NUMBER*9 ]
214 int32 temp3 = pt_synth[ SUBBANDS_NUMBER\/2]; local
    [all...]
pvmp3_equalizer.cpp 343 int32 temp3 = (pt_work_buff[ i + 2*FILTERBANK_BANDS ]); local
347 *(inData++) = temp3;
358 int32 temp3 = (pt_work_buff[ i + 2*FILTERBANK_BANDS ]); local
362 *(inData++) = temp3;
383 int32 temp3 = (pt_work_buff[ i + 2*FILTERBANK_BANDS ]); local
387 *(inData++) = fxp_mul32_Q32(temp3 << 1, *(pt_equalizer++));
400 int32 temp3 = (pt_work_buff[ i + 2*FILTERBANK_BANDS ]); local
404 *(inData++) = fxp_mul32_Q32(temp3 << 1, *(pt_equalizer++));
pvmp3_imdct_synth.cpp 323 int32 temp3 = out[slot+4]; local
326 out[slot+4] = -temp3;
344 int32 temp3 = history[slot+2]; local
347 out[slot+2] = temp3;
351 temp3 = history[slot+5];
354 out[slot+5] = -temp3;
363 int32 temp3 = history[slot+2]; local
366 out[slot+2] = temp3;
pvmp3_dct_16.cpp 320 int32 temp3; local
328 temp3 = vec[ 8];
335 vec[16] = temp3;
344 temp3 = vec[11];
347 vec[22] = temp3;
348 temp3 = vec[15];
361 vec[30] = temp3;
  /external/clang/test/CodeGenCXX/
type_visibility.cpp 73 namespace temp3 { namespace
  /external/libavc/common/x86/
ih264_ihadamard_scaling_sse42.c 98 __m128i temp0, temp1, temp2, temp3; local
128 temp3 = _mm_unpackhi_epi32(src_r2, src_r3); //c2 d2 c3 d3
131 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
132 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
137 temp3 = _mm_sub_epi32(src_r0, src_r3);
140 src_r1 = _mm_add_epi32(temp2, temp3);
142 src_r3 = _mm_sub_epi32(temp3, temp2);
157 temp3 = _mm_unpackhi_epi32(src_r2, src_r3); //c2 c3 d2 d3
160 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3
161 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d
    [all...]
ih264_ihadamard_scaling_ssse3.c 98 __m128i temp0, temp1, temp2, temp3; local
130 temp3 = _mm_unpackhi_epi32(src_r2, src_r3); //c2 d2 c3 d3
133 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
134 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
139 temp3 = _mm_sub_epi32(src_r0, src_r3);
142 src_r1 = _mm_add_epi32(temp2, temp3);
144 src_r3 = _mm_sub_epi32(temp3, temp2);
159 temp3 = _mm_unpackhi_epi32(src_r2, src_r3); //c2 c3 d2 d3
162 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3
163 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d
    [all...]
ih264_iquant_itrans_recon_dc_ssse3.c 245 __m128i temp1,temp2,temp3,temp4, temp5, temp6, temp7,temp8; local
292 temp3 = _mm_add_epi16(value_add, pred_r2);
309 sign_reg = _mm_cmpgt_epi16(temp3, zero_8x16b); // sign check
310 temp3 = _mm_and_si128(temp3, sign_reg);
324 temp3 = _mm_packus_epi16(temp3, zero_8x16b);
333 _mm_storel_epi64((__m128i *)(&pu1_out[2 * out_strd]), temp3);
ih264_iquant_itrans_recon_sse42.c 119 __m128i temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
184 temp3 = _mm_unpacklo_epi32(resq_r2, resq_r3); //c0 d0 c1 d1
187 resq_r0 = _mm_unpacklo_epi64(temp1, temp3); //a0 b0 c0 d0
188 resq_r1 = _mm_unpackhi_epi64(temp1, temp3); //a1 b1 c1 d1
201 temp3 = _mm_srai_epi32(resq_r3, 1); //(w3>>1) + w1
202 temp3 = _mm_add_epi32(temp3, resq_r1);
205 resq_r0 = _mm_add_epi32(temp0, temp3);
211 resq_r3 = _mm_sub_epi32(temp0, temp3);
220 temp3 = _mm_unpacklo_epi32(resq_r2, resq_r3); //a2 a3 b2 b
368 __m128i temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
    [all...]
  /external/webp/src/dsp/
alpha_processing_mips_dsp_r2.c 29 int temp1, temp2, temp3; local
37 "srl %[temp3], %[temp0], 24 \n\t"
42 "sb %[temp3], -4(%[pdst]) \n\t"
44 [temp3]"=&r"(temp3), [palpha]"+r"(palpha), [pdst]"+r"(pdst),
95 int temp0, temp1, temp2, temp3, alpha; local
106 "ext %[temp3], %[argb], 16, 8 \n\t"
109 "mul %[temp3], %[temp3], %[temp0] \n\t"
111 "addu %[temp3], %[temp3], %[c_8000000] \n\t
132 int temp0, temp1, temp2, temp3, offset; local
    [all...]
rescaler_mips_dsp_r2.c 36 int temp0, temp1, temp2, temp3, temp4, temp5, loop_end;
47 "li %[temp3], 0x10000 \n\t"
55 "mult $ac0, %[temp3], %[temp4] \n\t"
57 "mult $ac1, %[temp3], %[temp4] \n\t"
59 "mult $ac2, %[temp3], %[temp4] \n\t"
61 "mult $ac3, %[temp3], %[temp4] \n\t"
78 "mult $ac0, %[temp3], %[temp4] \n\t"
80 "mult $ac1, %[temp3], %[temp4] \n\t"
82 "mult $ac2, %[temp3], %[temp4] \n\t"
84 "mult $ac3, %[temp3], %[temp4] \n\t
172 int temp0, temp1, temp2, temp3, temp4, temp5, loop_end; local
    [all...]
lossless_enc_mips_dsp_r2.c 23 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
35 "lw %[temp3], 12(%[argb_data]) \n\t"
39 "ext %[temp7], %[temp3], 8, 8 \n\t"
48 "subu.qb %[temp3], %[temp3], %[temp7] \n\t"
53 " sw %[temp3], -4(%[argb_data]) \n\t"
68 [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3),
83 int temp0, temp1, temp2, temp3, temp4, temp5; local
108 "precrq.qb.ph %[temp3], %[argb], %[argb1] \n\t
189 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
240 int temp0, temp1, temp2, temp3, temp4; local
    [all...]
rescaler_mips32.c 39 int temp1, temp2, temp3; local
62 "mul %[temp3], %[sum], %[x_sub] \n\t"
67 "subu %[temp3], %[temp3], %[frac] \n\t"
68 "sw %[temp3], 0(%[frow]) \n\t"
71 : [accum]"=&r"(accum), [src1]"+r"(src1), [temp3]"=&r"(temp3),
99 int temp1, temp2, temp3, temp4; local
105 "addiu %[temp3], %[src_width], -1 \n\t"
108 "bgtz %[temp3], 0f \n\t
154 int temp0, temp1, temp3, temp4, temp5, loop_end; local
    [all...]
  /external/libgsm/src/
rpe.c 361 word temp, temp1, temp2, temp3; local
368 temp3 = gsm_asl( 1, gsm_sub( temp2, 1 ));
380 temp = GSM_ADD( temp, temp3 );
  /external/libvpx/libvpx/test/
vp8_fdct4x4_test.cc 43 const int temp3 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); local
45 const int d1 = temp3 + temp4;
61 const int temp3 = ip[1] + ((ip[1] * cospi8sqrt2minus1) >> 16); local
63 const int d1 = temp3 + temp4;
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
idctllm_dspr2.c 49 int temp3, temp4; local
67 temp3 = (ip[5] * sinpi8sqrt2) >> 16;
69 c2 = temp3 - temp4;
71 temp3 = ip[5] + ((ip[5] * cospi8sqrt2minus1) >> 16);
73 d2 = temp3 + temp4;
99 temp3 = (ip[7] * sinpi8sqrt2) >> 16;
101 c2 = temp3 - temp4;
103 temp3 = ip[7] + ((ip[7] * cospi8sqrt2minus1) >> 16);
105 d2 = temp3 + temp4;
137 temp3 = (ip[5] * sinpi8sqrt2) >> 16
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
dct_msa.c 170 v4i32 in0_w, in1_w, in2_w, in3_w, temp0, temp1, temp2, temp3; local
179 BUTTERFLY_4(in0_w, in1_w, in3_w, in2_w, temp0, temp3, temp2, temp1);
180 SLLI_4V(temp0, temp1, temp2, temp3, 2);
181 BUTTERFLY_4(temp0, temp1, temp2, temp3, in0_w, in1_w, in2_w, in3_w);
186 BUTTERFLY_4(in0_w, in1_w, in3_w, in2_w, temp0, temp3, temp2, temp1);
187 BUTTERFLY_4(temp0, temp1, temp2, temp3, in0_w, in1_w, in2_w, in3_w);
  /external/libvpx/libvpx/vpx_dsp/arm/
fdct_neon.c 66 const int32x4_t temp3 = vmlal_n_s16(s_3_cospi_8_64, s_2, cospi_24_64); local
70 int16x4_t out_1 = vrshrn_n_s32(temp3, DCT_CONST_BITS);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lattice.c 102 int16_t temp2,temp3; local
123 temp3 = (int16_t)(2 * u + lo_hi);
131 gain32 = gain_lo_hiQ17[temp3];
238 int16_t temp2,temp3; local
247 temp3 = (int16_t)(2 * u + lo_hi);
261 tmp32 = gain_lo_hiQ17[temp3] << 10; // Q27
  /external/epid-sdk/epid/member/tiny/math/src/
fq12.c 97 Fq12Elem* const temp3 = &tmp3; local
99 Fq12Conj(temp3, in);
100 Fq12Mul(temp4, temp3, in);
102 Fq12MulScalar(result, temp3, &temp4->z0);
189 Fq2Elem* temp3 = &tmp3; local
204 Fq4Square(temp3, temp4, a1, a4); // t01, t12 = sq(a1,a4)
216 Fq2Sub(e2, temp3, e2);
217 Fq2Add(e2, temp3, e2);
218 Fq2Add(e2, temp3, e2);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBIAPITest.java 97 String temp3 = bi3.toString(); local
98 if (temp2.equals(temp3) || temp.equals(temp2) || !temp.equals(temp3))
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBIAPITest.java 94 String temp3 = bi3.toString(); local
95 if (temp2.equals(temp3) || temp.equals(temp2) || !temp.equals(temp3))

Completed in 1117 milliseconds

1 2 3 4