HomeSort by relevance Sort by last modified time
    Searched defs:temp1 (Results 26 - 50 of 252) sorted by null

12 3 4 5 6 7 8 91011

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_halfpel_inline.h 84 register int32 temp1; local
93 "=&r"(temp1)
104 register int32 temp1; local
113 "=&r"(temp1)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_polyphase_filter_window.cpp 137 int32 temp1 = pt_1[ 0]; local
142 sum1 = fxp_mac32_Q32(sum1, temp1, winPtr[ 0]);
144 sum2 = fxp_mac32_Q32(sum2, temp1, winPtr[ 1]);
151 temp1 = pt_1[ SUBBANDS_NUMBER* 2];
156 sum1 = fxp_mac32_Q32(sum1, temp1, winPtr[ 4]);
158 sum2 = fxp_mac32_Q32(sum2, temp1, winPtr[ 5]);
165 temp1 = pt_1[ SUBBANDS_NUMBER* 4 ];
170 sum1 = fxp_mac32_Q32(sum1, temp1, winPtr[ 8]);
172 sum2 = fxp_mac32_Q32(sum2, temp1, winPtr[ 9]);
179 temp1 = pt_1[ SUBBANDS_NUMBER*6 ]
212 int32 temp1 = pt_synth[ 0 ]; local
    [all...]
  /external/clang/test/CodeGenCXX/
type_visibility.cpp 39 namespace temp1 { namespace
  /external/eigen/blas/f2c/
dsbmv.c 24 doublereal temp1, temp2; local
265 temp1 = *alpha * x[j];
272 y[i__] += temp1 * a[l + i__ + j * a_dim1];
276 y[j] = y[j] + temp1 * a[kplus1 + j * a_dim1] + *alpha * temp2;
284 temp1 = *alpha * x[jx];
293 y[iy] += temp1 * a[l + i__ + j * a_dim1];
299 y[jy] = y[jy] + temp1 * a[kplus1 + j * a_dim1] + *alpha *
317 temp1 = *alpha * x[j];
319 y[j] += temp1 * a[j * a_dim1 + 1];
325 y[i__] += temp1 * a[l + i__ + j * a_dim1]
    [all...]
ssbmv.c 24 real temp1, temp2; local
267 temp1 = *alpha * x[j];
274 y[i__] += temp1 * a[l + i__ + j * a_dim1];
278 y[j] = y[j] + temp1 * a[kplus1 + j * a_dim1] + *alpha * temp2;
286 temp1 = *alpha * x[jx];
295 y[iy] += temp1 * a[l + i__ + j * a_dim1];
301 y[jy] = y[jy] + temp1 * a[kplus1 + j * a_dim1] + *alpha *
319 temp1 = *alpha * x[j];
321 y[j] += temp1 * a[j * a_dim1 + 1];
327 y[i__] += temp1 * a[l + i__ + j * a_dim1]
    [all...]
chbmv.c 29 complex temp1, temp2; local
290 temp1.r = q__1.r, temp1.i = q__1.i;
300 q__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i,
301 q__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5]
317 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i;
333 temp1.r = q__1.r, temp1.i = q__1.i
    [all...]
chpmv.c 29 complex temp1, temp2; local
249 temp1.r = q__1.r, temp1.i = q__1.i;
257 q__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i,
258 q__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5]
275 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i;
292 temp1.r = q__1.r, temp1.i = q__1.i
    [all...]
zhbmv.c 30 doublecomplex temp1, temp2; local
291 temp1.r = z__1.r, temp1.i = z__1.i;
301 z__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i,
302 z__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5]
318 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i;
334 temp1.r = z__1.r, temp1.i = z__1.i
    [all...]
zhpmv.c 29 doublecomplex temp1, temp2; local
249 temp1.r = z__1.r, temp1.i = z__1.i;
257 z__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i,
258 z__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5]
275 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i;
292 temp1.r = z__1.r, temp1.i = z__1.i
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
CalculateCRC32.java 72 int temp1, temp2; local
77 temp1 = cachedCRC >>> 8;
80 cachedCRC = temp1 ^ temp2;
  /external/libavc/common/x86/
ih264_ihadamard_scaling_sse42.c 98 __m128i temp0, temp1, temp2, temp3; local
127 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3
131 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
132 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
135 temp1 = _mm_add_epi32(src_r1, src_r2);
139 src_r0 = _mm_add_epi32(temp0, temp1);
141 src_r2 = _mm_sub_epi32(temp0, temp1);
156 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1
160 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3
161 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d
211 __m128i src, plane_0, plane_1, temp0, temp1, sign_reg; local
    [all...]
ih264_ihadamard_scaling_ssse3.c 98 __m128i temp0, temp1, temp2, temp3; local
129 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3
133 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
134 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
137 temp1 = _mm_add_epi32(src_r1, src_r2);
141 src_r0 = _mm_add_epi32(temp0, temp1);
143 src_r2 = _mm_sub_epi32(temp0, temp1);
158 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1
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...]
  /external/libcxx/test/std/containers/associative/map/map.cons/
copy_assign.pass.cpp 79 std::vector<int> temp1, temp2; local
85 temp1 = ca_allocs;
86 std::sort(temp1.begin(), temp1.end());
88 std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter<std::vector<int>>(temp2));
97 temp1 = ca_allocs;
98 std::sort(temp1.begin(), temp1.end());
100 std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter<std::vector<int>>(temp2))
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct16x16_add_sse4.c 107 __m128i temp1[2]; local
134 extend_64bit(io[0], temp1);
135 step2[0] = multiplication_round_shift_sse4_1(temp1, cospi_16_64);
highbd_idct16x16_add_sse2.c 106 __m128i temp1[2], sign[2]; local
133 abs_extend_64bit_sse2(io[0], temp1, sign);
134 step2[0] = multiplication_round_shift_sse2(temp1, sign, cospi_16_64);
highbd_idct4x4_add_sse2.c 30 __m128i temp1[4], temp2[4], step[4]; local
39 temp1[0] = _mm_add_epi32(io[0], io[2]); // input[0] + input[2]
41 temp1[1] = _mm_srli_si128(temp1[0], 4); // 1, 3
43 temp1[0] = _mm_mul_epu32(temp1[0], cospi_p16_p16); // ([0] + [2])*cospi_16_64
44 temp1[1] = _mm_mul_epu32(temp1[1], cospi_p16_p16); // ([0] + [2])*cospi_16_64
47 step[0] = dct_const_round_shift_4_sse2(temp1[0], temp1[1])
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
pstfilt.cpp 329 Word16 temp1, temp2;
376 temp1 = extract_h (L_tmp);
392 temp2 = div_s (temp2, temp1);
455 Word16 temp1; local
518 temp1 = (Word16)(L_tmp >> 16);
556 temp2 = div_s(temp2, temp1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.cons/
copy_assign.pass.cpp 79 std::vector<int> temp1, temp2; local
85 temp1 = ca_allocs;
86 std::sort(temp1.begin(), temp1.end());
88 std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter<std::vector<int>>(temp2));
97 temp1 = ca_allocs;
98 std::sort(temp1.begin(), temp1.end());
100 std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter<std::vector<int>>(temp2))
    [all...]
  /device/google/contexthub/lib/nanohub/
sha2.c 95 uint32_t temp1 = h + s1 + ch + k[i] + state->w[i]; local
103 e = d + temp1;
107 a = temp1 + temp2;
  /external/libhevc/common/
ihevc_itrans.c 408 WORD32 temp1, temp2; local
435 temp1 = (pi2_src[8 ] + pi2_src[3*8]) * 75;
438 o[0] = temp1 + 14 * pi2_src[8 ] + temp2 - 32 * pi2_src[7*8];
439 o[1] = temp1 - 93 * pi2_src[3*8] - temp2 - 39 * pi2_src[5*8];
442 temp1 = (pi2_src[src_strd] + pi2_src[3 * src_strd]) * 75;
445 o[0] = temp1 + 14 * pi2_src[src_strd] + temp2
447 o[1] = temp1 - 93 * pi2_src[3 * src_strd] - temp2
452 temp1 = (pi2_src[8 ] - pi2_src[3*8]) * 50;
455 o[2] = temp1 - 39 * pi2_src[3*8] + temp2 - 57 * pi2_src[5*8];
456 o[3] = temp1 - 32 * pi2_src[8 ] + temp2 - 164 * pi2_src[7*8]
652 WORD32 temp1, temp2; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
idctllm.c 38 int temp1, temp2; local
45 temp1 = (ip[4] * sinpi8sqrt2) >> 16;
47 c1 = temp1 - temp2;
49 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16);
51 d1 = temp1 + temp2;
70 temp1 = (ip[1] * sinpi8sqrt2) >> 16;
72 c1 = temp1 - temp2;
74 temp1 = ip[1] + ((ip[1] * cospi8sqrt2minus1) >> 16);
76 d1 = temp1 + temp2;
  /external/libxaac/decoder/
ixheaacd_fwd_alias_cnx.c 195 WORD32 temp1; local
198 temp1 = ixheaacd_mul32_sh(
207 ixheaacd_add32_sat3((fac_data_out[i] / 2), temp1, temp2);
  /external/webp/src/dsp/
alpha_processing_mips_dsp_r2.c 29 int temp1, temp2, temp3; local
35 "srl %[temp1], %[temp0], 8 \n\t"
40 "sb %[temp1], -12(%[pdst]) \n\t"
43 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
95 int temp0, temp1, temp2, temp3, alpha; local
104 "andi %[temp1], %[argb], 0xff \n\t"
107 "mul %[temp1], %[temp1], %[temp0] \n\t"
110 "precrq.ph.w %[temp1], %[temp2], %[temp1] \n\t
131 int temp0, temp1, temp2, offset; local
    [all...]
cost_mips32.c 19 int temp0, temp1; local
44 "subu %[temp1], %[res_last], %[n] \n\t"
46 "blez %[temp1], 2f \n\t"
52 "slti %[temp1], %[v_reg], 0 \n\t"
53 "movn %[v_reg], %[temp0], %[temp1] \n\t"
57 "sll %[temp1], %[v_reg], 1 \n\t"
58 "addu %[temp1], %[temp1], %[VP8LevelFixedCosts] \n\t"
59 "lhu %[temp1], 0(%[temp1]) \n\t
102 int temp0, temp1, temp2, n, n1; local
    [all...]
cost_mips_dsp_r2.c 19 int temp0, temp1; local
44 "subu %[temp1], %[res_last], %[n] \n\t"
45 "blez %[temp1], 2f \n\t"
55 "sll %[temp1], %[v_reg], 1 \n\t"
56 "lhx %[temp1], %[temp1](%[VP8LevelFixedCosts]) \n\t"
59 "addu %[cost], %[cost], %[temp1] \n\t"
72 [temp1]"=&r"(temp1)

Completed in 6647 milliseconds

12 3 4 5 6 7 8 91011