HomeSort by relevance Sort by last modified time
    Searched refs:tmp1 (Results 26 - 50 of 202) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/av/media/libstagefright/codecs/amrwb/src/
oversamp_12k8_to_16k.cpp 284 int16 tmp1, tmp2, tmp3, tmp4; local
288 tmp1 = *(pt_x++);
292 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), 0x00002000L);
296 tmp1 = *(pt_x++);
300 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), L_sum);
304 tmp1 = *(pt_x++);
308 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), L_sum);
312 tmp1 = *(pt_x++);
316 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), L_sum);
320 tmp1 = *(pt_x++)
    [all...]
band_pass_6k_7k.cpp 193 int16 tmp1 = x[(i<<2)+j ]; local
197 L_tmp1 = fxp_mac_16by16(tmp1, fir_6k_7k[j ], L_tmp1);
204 tmp1 = x[(i<<2)+j+3];
207 L_tmp2 = fxp_mac_16by16(tmp1, fir_6k_7k[j+2], L_tmp2);
208 L_tmp4 = fxp_mac_16by16(tmp1, fir_6k_7k[j ], L_tmp4);
209 L_tmp3 = fxp_mac_16by16(tmp1, fir_6k_7k[j+1], L_tmp3);
210 L_tmp1 = fxp_mac_16by16(tmp1, fir_6k_7k[j+3], L_tmp1);
215 tmp1 = x[(i<<2)+j+5];
218 L_tmp4 = fxp_mac_16by16(tmp1, fir_6k_7k[j+2], L_tmp4);
219 L_tmp3 = fxp_mac_16by16(tmp1, fir_6k_7k[j+3], L_tmp3)
    [all...]
low_pass_filt_7k.cpp 173 int16 tmp1 = x[(i<<2)+j ]; local
177 L_tmp1 = fxp_mac_16by16(tmp1, fir_7k[j ], L_tmp1);
184 tmp1 = x[(i<<2)+j+3];
187 L_tmp2 = fxp_mac_16by16(tmp1, fir_7k[j+2], L_tmp2);
188 L_tmp4 = fxp_mac_16by16(tmp1, fir_7k[j ], L_tmp4);
189 L_tmp3 = fxp_mac_16by16(tmp1, fir_7k[j+1], L_tmp3);
190 L_tmp1 = fxp_mac_16by16(tmp1, fir_7k[j+3], L_tmp1);
195 tmp1 = x[(i<<2)+j+5];
198 L_tmp4 = fxp_mac_16by16(tmp1, fir_7k[j+2], L_tmp4);
199 L_tmp3 = fxp_mac_16by16(tmp1, fir_7k[j+3], L_tmp3)
    [all...]
  /external/eigen/unsupported/test/
NumericalDiff.cpp 39 double tmp1, tmp2, tmp3; local
45 tmp1 = 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
58 tmp1 = i+1;
60 tmp3 = (i>=8)? tmp2 : tmp1;
63 fjac(i,1) = tmp1*tmp2/tmp4;
64 fjac(i,2) = tmp1*tmp3/tmp4;
  /external/openssl/crypto/sha/asm/
sha1-sparcv9.pl 49 $tmp1="%i4";
59 srl $a,27,$tmp1
62 add $tmp1,$e,$e
64 andn $d,$b,$tmp1
66 or $tmp1,$tmp0,$tmp1
75 add $tmp1,$e,$e
87 srl $a,27,$tmp1
93 srlx @X[($j+7)%8],32,$tmp1
96 or $tmp1,$Xi,$X
    [all...]
sha1-586.pl 128 $tmp1="ebp";
143 if ($n==0) { &mov($tmp1,$a); }
144 else { &mov($a,$tmp1); }
145 &rotl($tmp1,5); # tmp1=ROTATE(a,5)
147 &add($tmp1,$e); # tmp1+=e;
154 &lea($tmp1,&DWP(0x5a827999,$tmp1,$e)); # tmp1+=K_00_19+x
    [all...]
sha512-sparcv9.pl 109 $tmp1="%g4";
141 srlx @X[$j+1],$tmp32,$tmp1
143 or $tmp1,@X[$j],@X[$j]
178 sllx @pair[0],$tmp0,$tmp1
181 or $tmp1,$tmp2,$tmp2
196 sllx @pair[0],$tmp0,$tmp1
199 or $tmp1,$tmp2,$tmp2
224 $SLL $e,`$SZ*8-@Sigma1[2]`,$tmp1
227 xor $tmp1,$h,$h
228 $SLL $e,`$SZ*8-@Sigma1[1]`,$tmp1
    [all...]
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_make_key.c 31 void *p, *q, *tmp1, *tmp2, *tmp3; local
49 if ((err = mp_init_multi(&p, &q, &tmp1, &tmp2, &tmp3, NULL)) != CRYPT_OK) {
59 if ((err = mp_sub_d( p, 1, tmp1)) != CRYPT_OK) { goto errkey; } /* tmp1 = p-1 */
60 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(p-1, e) */
66 if ((err = mp_sub_d( q, 1, tmp1)) != CRYPT_OK) { goto errkey; } /* tmp1 = q-1 */
67 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(q-1, e) */
70 /* tmp1 = lcm(p-1, q-1) */
72 /* tmp1 = q-1 (previous do/while loop) *
    [all...]
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_make_key.c 30 void *p, *q, *tmp1, *tmp2; local
44 if ((err = mp_init_multi(&p, &q, &tmp1, &tmp2, NULL)) != CRYPT_OK) {
53 if ((err = mp_sub_d(q, 1, tmp1)) != CRYPT_OK) { goto done; }
58 if ((err = mp_gcd(p, tmp1, tmp2)) != CRYPT_OK) { goto done; }
70 if ((err = mp_mul(key->p, key->q, key->pq)) != CRYPT_OK) { goto error2; } /* tmp1 = pq */
72 if ((err = mp_sub_d( p, 1, tmp1)) != CRYPT_OK) { goto error2; } /* tmp1 = q-1 */
74 if ((err = mp_lcm(tmp1, tmp2, key->d)) != CRYPT_OK) { goto error2; } /* tmp1 = lcd(p-1,q-1) */
79 if ((err = mp_mod( key->d, tmp1, key->dP)) != CRYPT_OK) { goto error2; } /* dP = d mod p-1 *
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 1090 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1279 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1497 int L1, L0, R0, R1, tmp, tmp1; local
1587 int L1, L0, R0, R1, tmp, tmp1; local
    [all...]
  /external/jpeg/
jidctint.c 152 INT32 tmp0, tmp1, tmp2, tmp3; local
217 tmp1 = (z2 - z3) << CONST_BITS;
221 tmp11 = tmp1 + tmp2;
222 tmp12 = tmp1 - tmp2;
229 tmp1 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
234 z2 = tmp1 + tmp2;
236 z4 = tmp1 + tmp3;
240 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
252 tmp1 += z2 + z4
    [all...]
  /external/qemu/distrib/jpeg-6b/
jidctint.c 152 INT32 tmp0, tmp1, tmp2, tmp3; local
217 tmp1 = (z2 - z3) << CONST_BITS;
221 tmp11 = tmp1 + tmp2;
222 tmp12 = tmp1 - tmp2;
229 tmp1 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
234 z2 = tmp1 + tmp2;
236 z4 = tmp1 + tmp3;
240 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
252 tmp1 += z2 + z4
    [all...]
  /external/openssl/crypto/bn/asm/
bn-586.pl 434 $tmp1="ecx";
452 &mov($tmp1,&DWP($i*4,$a,"",0)); # *a
454 &add($tmp1,$c);
457 &add($tmp1,$tmp2);
459 &mov(&DWP($i*4,$r,"",0),$tmp1); # *r
477 &mov($tmp1,&DWP($i*4,$a,"",0)); # *a
479 &add($tmp1,$c);
482 &add($tmp1,$tmp2);
485 &mov(&DWP($i*4,$r,"",0),$tmp1); # *r
506 $tmp1="ecx"
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_mid_hor.s 44 tmp1 RN 8 label
93 SMUAD tmp1, x_2_0, mult_20_01
98 SMLAD tmp1, x_3_1, mult_20_m5, tmp1
104 SMLABB tmp1, x_6_4, mult_20_m5, tmp1
109 SMLABB tmp1, x_7_5, mult_20_01, tmp1
116 STR tmp1, [mb], #4
124 SMUAD tmp1, x_6_4, mult_20_01
    [all...]
h264bsd_interpolate_chroma_ver.s 53 tmp1 RN 7 label
96 ADD tmp1, x0, chrPW ;// tmp1 = x0+ chromaPartWidth
97 CMP tmp1, width ;// x0+chromaPartWidth > width
104 ADD tmp1, y0, chrPH ;// tmp1 = y0 + chromaPartHeight
105 ADD tmp1, tmp1, #1 ;// tmp1 = y0 + chromaPartHeight + 1
106 CMP tmp1, heigh
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 46 tmp1 .req r5 label
86 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
89 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
94 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
95 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
ARM-E_interpolate_noloop_gnu.s 50 tmp1 .req r8 label
78 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
81 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
86 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
87 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 46 tmp1 .req r5 label
86 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
89 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
94 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
95 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
ARM-E_interpolate_noloop_gnu.s 50 tmp1 .req r8 label
78 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
81 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
86 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
87 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_6.cpp 118 Int32 tmp1; local
129 tmp1 = vec[4] + vec[1];
136 vec[4] = (vec[0] >> 1) - tmp1;
137 vec[0] += tmp1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 122 u32 x, y, tmp1, tmp2, tmp3, tmp4, c, val; local
166 tmp1 = ptrA[width];
170 c = ((val * tmp1 + xFrac * tmp3) << 3) + 32;
176 tmp1 = ptrA[width];
178 c = ((val * tmp3 + xFrac * tmp1) << 3) + 32;
218 u32 x, y, tmp1, tmp2, tmp3, c, val; local
264 tmp1 = *ptrA++;
268 c = ((val * tmp1 + yFrac * tmp2) << 3) + 32;
273 tmp1 = *ptrA++;
277 c = ((val * tmp1 + yFrac * tmp2) << 3) + 32
313 u32 x, y, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, valX, valY, plus32 = 32; local
501 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
620 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
754 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
878 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1017 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1220 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1407 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1611 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
c_g_aver.cpp 286 Word16 tmp[M], tmp1, tmp2, shift1, shift2, shift;
303 tmp1 = abs_s(sub(lspAver[i], lsp[i])); // Q15
304 shift1 = sub(norm_s(tmp1), 1); // Qn
305 tmp1 = shl(tmp1, shift1); // Q15+Qn
308 tmp[i] = div_s(tmp1, tmp2); // Q15+(Q15+Qn)-(Q15+Qm)
358 tmp1 = tmp_diff;
362 tmp1 = 0;
365 // min(0.25, tmp1)
366 if (sub(2048, tmp1) < 0
486 Word16 tmp1; local
    [all...]
  /external/openssl/crypto/ripemd/asm/
rmd-586.pl 19 $tmp1="eax";
84 #&mov($tmp1, $c) if $o == -1;
85 &xor($tmp1, $d) if $o == -1;
87 &xor($tmp1, $b);
90 &add($a, $tmp1);
91 &mov($tmp1, &Np($c)); # NEXT
98 &xor($tmp1, $d);
100 &xor($tmp1, $b);
101 &add($a, $tmp1);
102 &mov($tmp1, &Np($c)) if $o <= 0
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 347 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
351 STRD tmp1, tmp2, [pDst], dstStep
353 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
382 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
385 M_EXT_XINT $offset, tmp1, tmp2, tmp3, tmp4
386 M_UHADD8R tmp5, tmp1, tmp3, (1-$rndVal), mask
389 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
413 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp5, $offset ;// Pre-load
418 M_UHADD8R tmp1, tmp1, tmp3, (1-$rndVal), mas
584 tmp1 RN 4 label
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample.c 316 WebRtc_Word32 tmp1 = 16384; local
321 tmp1 += coef * in1[0];
325 tmp1 += coef * in1[1];
329 tmp1 += coef * in1[2];
333 tmp1 += coef * in1[3];
337 tmp1 += coef * in1[4];
341 tmp1 += coef * in1[5];
345 tmp1 += coef * in1[6];
349 tmp1 += coef * in1[7];
353 *out1 = tmp1 + coef * in1[8]
362 WebRtc_Word32 tmp1 = 16384; local
    [all...]

Completed in 716 milliseconds

12 3 4 5 6 7 8 9