Searched defs:tmp1 (Results 1 - 25 of 95) sorted by relevance

1234

/external/stlport/test/compiler/
H A Dpartial_spec.cpp29 int tmp1 = 0; local
31 func(tmp1);
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_make_key.c30 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, ke
[all...]
/external/aac/libAACdec/src/arm/
H A Dblock_arm.cpp120 FIXP_DBL tmp0, tmp1, tmp2, tmp3; local
122 tmp1 = pSpectrum[1];
126 tmp1 >>= scale;
130 *pSpectrum++ = tmp1;
/external/aac/libFDK/include/arm/
H A Dcplx_mul.h110 LONG tmp1,tmp2; local
118 : "=&r"(tmp1), "=&r"(tmp2)
122 *c_Re = tmp1;
135 LONG tmp1, tmp2; local
139 "smlawb %0, %2, %4, %1;\n" /* tmp1 = a_Re * b_Re - a_Im * b_Im */
142 : "=&r"(tmp1), "=&r"(tmp2)
146 *c_Re = tmp1;
159 LONG tmp1, tmp2; local
166 : "=&r"(tmp1), "=&r"(tmp2)
170 *c_Re += tmp1;
184 LONG tmp1, tmp2; local
[all...]
/external/aac/libFDK/include/
H A Dfft.h126 FIXP_DBL a00, a10, a20, a30, tmp0, tmp1; local
137 tmp1 = a20 - x[5]; /* Im A - Im B */
147 x[3] = tmp1 - a10; /* Im B' = Im A - Im B - Re C + Re D */
148 x[7] = tmp1 + a10; /* Im D' = Im A - Im B + Re C - Re D */
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp117 FIXP_DBL tmp1 = mySpec[1]; local
121 tmp1 = fMultDiv2(tmp1, factor);
125 tmp1 <<= shift;
129 *mySpec++ = tmp1;
147 FIXP_DBL tmp1 = mySpec[1]; local
151 tmp1 = fMultDiv2(tmp1, factor);
155 tmp1 >>= shift;
159 *mySpec++ = tmp1;
[all...]
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_make_key.c31 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
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_toom_sqr.c22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
60 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) {
63 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) {
66 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) {
69 if ((res = mp_add(&tmp1, &a2, &tmp1)) != MP_OKAY) {
73 if ((res = mp_sqr(&tmp1,
[all...]
H A Dbn_mp_toom_mul.c27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
33 &b2, &tmp1, &tmp2, NULL)) != MP_OKAY) {
83 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) {
86 if ((res = mp_add(&tmp1, &a1, &tmp1)) != MP_OKAY) {
89 if ((res = mp_mul_2(&tmp1, &tmp1)) != MP_OKAY) {
92 if ((res = mp_add(&tmp1, &a2, &tmp1)) != MP_OKAY) {
109 if ((res = mp_mul(&tmp1,
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s50 tmp1 .req r9 label
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
98 LDRSH tmp1, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
109 SMLABB tmp1, tmp1, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
113 MOV z1, tmp1, ASR #14 @ shift result to low word
H A DARM-E_interpolate_loop_gnu.s46 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
[all...]
H A DARM-E_interpolate_noloop_gnu.s50 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
[all...]
H A DARM-E_voice_gain_gnu.s46 tmp1 .req r5 label
86 LDR tmp1, [pWTFrame, #m_gainTarget]
94 SMULBB gainIncLeft, tmp1, gainIncLeft
102 SMULBB gainIncRight, tmp1, gainIncRight
110 LDR tmp1, [pMixBuffer]
114 SMLAWB tmp1, gainLeft, tmp0, tmp1
120 STR tmp1, [pMixBuffer], #4
148 LDR tmp1, [pMixBuffer] @ get left channel output sample
153 ADD tmp1, tmp
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s50 tmp1 .req r9 label
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
98 LDRSH tmp1, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
109 SMLABB tmp1, tmp1, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
113 MOV z1, tmp1, ASR #14 @ shift result to low word
H A DARM-E_interpolate_loop_gnu.s46 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
[all...]
H A DARM-E_interpolate_noloop_gnu.s50 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
[all...]
H A DARM-E_voice_gain_gnu.s46 tmp1 .req r5 label
86 LDR tmp1, [pWTFrame, #m_gainTarget]
94 SMULBB gainIncLeft, tmp1, gainIncLeft
102 SMULBB gainIncRight, tmp1, gainIncRight
110 LDR tmp1, [pMixBuffer]
114 SMLAWB tmp1, gainLeft, tmp0, tmp1
120 STR tmp1, [pMixBuffer], #4
148 LDR tmp1, [pMixBuffer] @ get left channel output sample
153 ADD tmp1, tmp
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dresample_by_2_internal.c34 WebRtc_Word32 tmp0, tmp1, diff; local
46 tmp1 = state[0] + diff * kResampleAllpass[1][0];
48 diff = tmp1 - state[2];
54 state[1] = tmp1;
76 tmp1 = state[4] + diff * kResampleAllpass[0][0];
78 diff = tmp1 - state[6];
84 state[5] = tmp1;
104 tmp1 = (in[(i << 1) + 2] + in[(i << 1) + 3]) >> 15;
110 if (tmp1 > (WebRtc_Word32)0x00007FFF)
111 tmp1
129 WebRtc_Word32 tmp0, tmp1, diff; local
203 WebRtc_Word32 tmp0, tmp1, diff; local
273 WebRtc_Word32 tmp0, tmp1, diff; local
343 WebRtc_Word32 tmp0, tmp1, diff; local
422 WebRtc_Word32 tmp0, tmp1, diff; local
555 WebRtc_Word32 tmp0, tmp1, diff; local
[all...]
H A Dresample_fractional.c153 WebRtc_Word32 tmp1 = 16384; local
158 tmp1 += coef * in1[0];
162 tmp1 += coef * in1[1];
166 tmp1 += coef * in1[2];
170 tmp1 += coef * in1[3];
174 tmp1 += coef * in1[4];
178 tmp1 += coef * in1[5];
182 tmp1 += coef * in1[6];
186 tmp1 += coef * in1[7];
190 *out1 = tmp1
[all...]
/external/aac/libAACdec/src/
H A Dldfiltbank.cpp134 FIXP_DBL z0, z2, tmp0, tmp1; local
142 tmp1 = ( fMultDiv2(z[N/2+i], fb[N+N/2-1-i]) + fMultDiv2(z[i], fb[N+N/2+i]) ) ;
147 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp1, -WTS1-1 + scale, SAMPLE_BITS);
151 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp1, WTS1+1 - scale, SAMPLE_BITS);
/external/aac/libAACenc/src/
H A Dtransform.cpp203 FIXP_DBL tmp1; local
204 tmp1 = fMultDiv2((FIXP_PCM)timeData[tl+nr+i], pRightWindowPart[i].v.re);
205 mdctData[(tl/2)-nr-i-1] = -fMultAddDiv2(tmp1, (FIXP_PCM)timeData[(tl*2)-nr-i-1], pRightWindowPart[i].v.im);
/external/ipsec-tools/src/racoon/
H A Disakmp_unity.c273 char tmp1[40]; local
293 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40);
295 plog(LLV_DEBUG, LOCATION, NULL, "splitnet: %s/%s\n", tmp1, tmp2);
361 char tmp1[40]; local
371 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40);
373 len += strlen(tmp1);
390 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40);
393 len += sprintf(str+len, "%s/%s ", tmp1, tmp2);
/external/jpeg/
H A Djfdctflt.c61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
73 tmp1 = dataptr[1] + dataptr[6];
84 tmp11 = tmp1 + tmp2;
85 tmp12 = tmp1 - tmp2;
123 tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6];
134 tmp11 = tmp1 + tmp2;
135 tmp12 = tmp1 - tmp2;
/external/openssl/crypto/ec/
H A Decp_oct.c74 BIGNUM *tmp1, *tmp2, *x, *y; local
90 tmp1 = BN_CTX_get(ctx);
101 /* tmp1 := x^3 */
107 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err;
112 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) goto err;
115 /* tmp1 := tmp1 + a*x */
120 if (!BN_mod_sub_quick(tmp1, tmp1, tmp2, &group->field)) goto err;
135 if (!BN_mod_add_quick(tmp1, tmp
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djfdctflt.c61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
73 tmp1 = dataptr[1] + dataptr[6];
84 tmp11 = tmp1 + tmp2;
85 tmp12 = tmp1 - tmp2;
123 tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6];
134 tmp11 = tmp1 + tmp2;
135 tmp12 = tmp1 - tmp2;

Completed in 906 milliseconds

1234