HomeSort by relevance Sort by last modified time
    Searched defs:tmp2 (Results 76 - 100 of 388) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/
PODIntervalTreeTest.cpp 103 int tmp2 = 2; local
106 IntervalType interval2(1, 3, &tmp2);
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
sqrt.c 433 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; local
487 tmp2 = last_delta;
489 delta = tmp2;
  /external/chromium_org/third_party/boringssl/src/crypto/ec/
oct.c 339 BIGNUM *tmp1, *tmp2, *x, *y; local
355 tmp2 = BN_CTX_get(ctx);
373 if (!group->meth->field_sqr(group, tmp2, x_, ctx) ||
374 !group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) {
378 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx) ||
379 !BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) {
386 if (!BN_mod_lshift1_quick(tmp2, x, &group->field) ||
387 !BN_mod_add_quick(tmp2, tmp2, x, &group->field) ||
388 !BN_mod_sub_quick(tmp1, tmp1, tmp2, &group->field))
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
jfdctflt.c 61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
75 tmp2 = dataptr[2] + dataptr[5];
84 tmp11 = tmp1 + tmp2;
85 tmp12 = tmp1 - tmp2;
125 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5];
134 tmp11 = tmp1 + tmp2;
135 tmp12 = tmp1 - tmp2;
jidctflt.c 72 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
125 tmp2 = DEQUANTIZE(inptr[DCTSIZE*4], quantptr[DCTSIZE*4]);
128 tmp10 = tmp0 + tmp2; /* phase 3 */
129 tmp11 = tmp0 - tmp2;
137 tmp2 = tmp11 - tmp12;
166 wsptr[DCTSIZE*2] = tmp2 + tmp5;
167 wsptr[DCTSIZE*5] = tmp2 - tmp5;
199 tmp2 = tmp11 - tmp12;
229 outptr[2] = range_limit[(int) DESCALE((INT32) (tmp2 + tmp5), 3)
231 outptr[5] = range_limit[(int) DESCALE((INT32) (tmp2 - tmp5), 3
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
vp9_intrapred4_dspr2.c 19 int32_t tmp1, tmp2, tmp3, tmp4; local
23 "lb %[tmp2], 1(%[left]) \n\t"
27 "replv.qb %[tmp2], %[tmp2] \n\t"
32 "sw %[tmp2], (%[dst]) \n\t"
38 : [tmp1] "=&r" (tmp1), [tmp2] "=&r" (tmp2),
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
mips_FFTFwd_RToCCS_F32_complex.c 30 OMX_F32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
55 tmp2 = p_src[p_bitrev[2]].Re + p_src[p_bitrev[3]].Re;
59 p_tmp[0].Re = tmp1 + tmp2;
60 p_tmp[2].Re = tmp1 - tmp2;
65 tmp2 = p_src[p_bitrev[2]].Re - p_src[p_bitrev[3]].Re;
71 p_tmp[1].Im = tmp3 - tmp2;
72 p_tmp[3].Im = tmp3 + tmp2;
87 tmp2 = p_src[p_bitrev[6]].Re + p_src[p_bitrev[7]].Re;
91 tmp5 = tmp1 + tmp2;
92 tmp1 = tmp1 - tmp2;
    [all...]
mips_FFTInv_CCSToR_F32_complex.c 30 OMX_F32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8, factor; local
42 tmp2 = p_src[n].Im;
48 tmp7 = tmp2 + tmp4;
49 tmp8 = tmp2 - tmp4;
62 tmp2 = p_src[n + fft_size / 4].Im;
68 tmp7 = tmp2 + tmp4;
69 tmp8 = tmp2 - tmp4;
84 tmp2 = p_src[fft_size / 8].Im;
90 tmp7 = tmp2 + tmp4;
91 tmp8 = tmp2 - tmp4
    [all...]
mips_FFTInv_CCSToR_F32_real.c 24 OMX_F32 factor, tmp1, tmp2; local
44 tmp2 = p_buf[2].Re + p_buf[3].Re;
48 pDst[0] = factor * (tmp1 + tmp2);
49 pDst[2] = factor * (tmp1 - tmp2);
68 tmp2 = p_tmp[0].Im + p_tmp[1].Im;
77 p_tmp[0].Im = tmp2 + tmp6;
78 p_tmp[2].Im = tmp2 - tmp6;
95 tmp2 = p_buf[6].Re + p_buf[7].Re;
99 tmp5 = tmp1 + tmp2;
103 tmp2 = p_buf[4].Im - p_buf[5].Im
    [all...]
  /external/chromium_org/third_party/opus/src/silk/float/
burg_modified_FLP.c 49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2; local
80 tmp2 = x_ptr[ subfr_length - n - 1 ];
86 tmp2 += x_ptr[ subfr_length - n + k ] * Atmp;
90 CAb[ k ] -= tmp2 * x_ptr[ subfr_length - n + k - 1 ];
94 tmp2 = C_last_row[ n ];
98 tmp2 += C_first_row[ n - k - 1 ] * Atmp;
101 CAb[ n + 1 ] = tmp2;
138 tmp2 = Af[ n - k - 1 ];
139 Af[ k ] = tmp1 + rc * tmp2;
140 Af[ n - k - 1 ] = tmp2 + rc * tmp1
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkBlurImage_opts_SSE2.cpp 60 __m128i tmp2 = _mm_mul_epu32(_mm_srli_si128(sum, 4), local
63 _mm_shuffle_epi32(tmp2, _MM_SHUFFLE(0,0,2,0)));
  /external/chromium_org/third_party/speex/libspeex/
quant_lsp.c 74 spx_word16_t tmp1, tmp2; local
82 tmp2 = LSP_PI-qlsp[i];
84 tmp2 = qlsp[i+1]-qlsp[i];
85 if (tmp2<tmp1)
86 tmp1 = tmp2;
335 tmp2 = 10/(qlsp[i+1]-qlsp[i]);
336 quant_weight[i] = tmp1 > tmp2 ? tmp1 : tmp2;
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
complex_fft_mips.c 31 int32_t tmp2 = 0; local
59 "addiu %[tmp2], %[tmp3], 512 \n\t"
62 "lhx %[wr], %[tmp2](%[kSinTable1024]) \n\t"
86 "mflo %[tmp2], $ac1 \n\t"
90 "shra_r.w %[tmp2], %[tmp2], 1 \n\t"
93 "addu %[tmp6], %[tmp5], %[tmp2] \n\t"
94 "subu %[tmp5], %[tmp5], %[tmp2] \n\t"
100 "mul %[tmp2], %[wr], %[tmp4] \n\t"
109 "subu %[tmp2], %[tmp2], %[tmp3] \n\t
153 int32_t tmp1 = 0, tmp2 = 0, tmp3 = 0, tmp4 = 0; local
    [all...]
resample.c 317 int32_t tmp2 = 16384; local
322 tmp2 += coef * in2[-0];
326 tmp2 += coef * in2[-1];
330 tmp2 += coef * in2[-2];
334 tmp2 += coef * in2[-3];
338 tmp2 += coef * in2[-4];
342 tmp2 += coef * in2[-5];
346 tmp2 += coef * in2[-6];
350 tmp2 += coef * in2[-7];
354 *out2 = tmp2 + coef * in2[-8]
363 int32_t tmp2 = 16384; local
    [all...]
resample_by_2.c 72 int32_t tmp1, tmp2, diff, in32, out32; local
91 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
93 diff = tmp2 - state3;
95 state2 = tmp2;
103 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state5);
105 diff = tmp2 - state7;
107 state6 = tmp2;
130 int32_t tmp1, tmp2, diff, in32, out32; local
149 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state1);
151 diff = tmp2 - state3
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model_mips.c 36 int32_t tmp2, tmp3; local
44 "lh %[tmp2], 0(%[tmp_a_poly]) \n\t"
45 "mul %[tmp32], %[tmp2], %[tmp2] \n\t"
50 "mfhi %[tmp2], $ac0 \n\t"
52 "sra %[sign_1], %[tmp2], 31 \n\t"
55 : [tmp2] "=&r" (tmp2), [tmp3] "=&r" (tmp3), [tmp32] "=&r" (tmp32),
68 "addwc %[sum64_hi], %[sum64_hi], %[tmp2] \n\t"
71 : [tmp2] "r" (tmp2), [tmp3] "r" (tmp3
119 int32_t tmp2, tmp3; local
    [all...]
pitch_estimator_mips.c 35 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
43 "lh %[tmp2], 2(%[tmp_in]) \n\t"
52 "mul %[tmp6], %[tmp2], %[tmp6] \n\t"
53 "mul %[tmp2], %[tmp2], %[tmp2] \n\t"
62 "srav %[tmp2], %[tmp2], %[scaling] \n\t"
69 "addu %[ysum32], %[ysum32], %[tmp2] \n\t"
79 : [tmp1] "=&r" (tmp1), [tmp2] "=&r" (tmp2), [tmp3] "=&r" (tmp3)
107 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
    [all...]
  /external/eigen/bench/spbench/
sp_solver.cpp 115 VectorXd tmp2 = b - A*x; local
116 double tempNorm = tmp2.norm()/b.norm();
test_sparseLU.cpp 87 Matrix<scalar, Dynamic, 1> tmp2 = b - A*x; local
88 scalar tempNorm = tmp2.norm()/b.norm();
  /external/eigen/unsupported/test/
NumericalDiff.cpp 39 double tmp1, tmp2, tmp3; local
46 tmp2 = 16 - i - 1;
47 tmp3 = (i>=8)? tmp2 : tmp1;
48 fvec[i] = y[i] - (x[0] + tmp1/(x[1]*tmp2 + x[2]*tmp3));
55 double tmp1, tmp2, tmp3, tmp4; local
59 tmp2 = 16 - i - 1;
60 tmp3 = (i>=8)? tmp2 : tmp1;
61 tmp4 = (x[1]*tmp2 + x[2]*tmp3); tmp4 = tmp4*tmp4;
63 fjac(i,1) = tmp1*tmp2/tmp4;
  /external/ipsec-tools/src/racoon/
isakmp_unity.c 274 char tmp2[40]; local
294 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40);
295 plog(LLV_DEBUG, LOCATION, NULL, "splitnet: %s/%s\n", tmp1, tmp2);
363 char tmp2[40]; local
373 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40);
375 len += strlen(tmp2);
392 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40);
402 len += sprintf(str+len, "%s/%s ", tmp1, tmp2);
  /external/jpeg/
jfdctflt.c 61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
75 tmp2 = dataptr[2] + dataptr[5];
84 tmp11 = tmp1 + tmp2;
85 tmp12 = tmp1 - tmp2;
125 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5];
134 tmp11 = tmp1 + tmp2;
135 tmp12 = tmp1 - tmp2;
jidctflt.c 72 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
125 tmp2 = DEQUANTIZE(inptr[DCTSIZE*4], quantptr[DCTSIZE*4]);
128 tmp10 = tmp0 + tmp2; /* phase 3 */
129 tmp11 = tmp0 - tmp2;
137 tmp2 = tmp11 - tmp12;
166 wsptr[DCTSIZE*2] = tmp2 + tmp5;
167 wsptr[DCTSIZE*5] = tmp2 - tmp5;
199 tmp2 = tmp11 - tmp12;
229 outptr[2] = range_limit[(int) DESCALE((INT32) (tmp2 + tmp5), 3)
231 outptr[5] = range_limit[(int) DESCALE((INT32) (tmp2 - tmp5), 3
    [all...]
  /external/libopus/silk/float/
burg_modified_FLP.c 49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2; local
80 tmp2 = x_ptr[ subfr_length - n - 1 ];
86 tmp2 += x_ptr[ subfr_length - n + k ] * Atmp;
90 CAb[ k ] -= tmp2 * x_ptr[ subfr_length - n + k - 1 ];
94 tmp2 = C_last_row[ n ];
98 tmp2 += C_first_row[ n - k - 1 ] * Atmp;
101 CAb[ n + 1 ] = tmp2;
138 tmp2 = Af[ n - k - 1 ];
139 Af[ k ] = tmp1 + rc * tmp2;
140 Af[ n - k - 1 ] = tmp2 + rc * tmp1
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_intrapred4_dspr2.c 19 int32_t tmp1, tmp2, tmp3, tmp4; local
23 "lb %[tmp2], 1(%[left]) \n\t"
27 "replv.qb %[tmp2], %[tmp2] \n\t"
32 "sw %[tmp2], (%[dst]) \n\t"
38 : [tmp1] "=&r" (tmp1), [tmp2] "=&r" (tmp2),

Completed in 1138 milliseconds

1 2 34 5 6 7 8 91011>>