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

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
vla-3.c 8 char tmp2[size+16]; local
  /external/stlport/test/compiler/
partial_spec.cpp 30 template_struct<int> tmp2; local
32 func(tmp2);
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_verify_key.c 28 void *tmp, *tmp2; local
56 if ((err = mp_init_multi(&tmp, &tmp2, NULL)) != CRYPT_OK) { return err; }
70 if ((err = mp_div(tmp, key->q, tmp, tmp2)) != CRYPT_OK) { goto error; }
71 if (mp_iszero(tmp2) != LTC_MP_YES) {
93 mp_clear_multi(tmp, tmp2, NULL);
dsa_make_key.c 31 void *tmp, *tmp2; local
56 if ((err = mp_init_multi(&tmp, &tmp2, &key->g, &key->q, &key->p, &key->x, &key->y, NULL)) != CRYPT_OK) {
79 if ((err = mp_read_unsigned_bin(tmp2, buf, modulus_size - group_size)) != CRYPT_OK) { goto error; }
80 if ((err = mp_mul(key->q, tmp2, key->p)) != CRYPT_OK) { goto error; }
88 /* add 2q to p and 2 to tmp2 */
90 if ((err = mp_add_d(tmp2, 2, tmp2)) != CRYPT_OK) { goto error; }
93 /* now p = (q * tmp2) + 1 is prime, find a value g for which g^tmp2 != 1 */
98 if ((err = mp_exptmod(key->g, tmp2, key->p, tmp)) != CRYPT_OK) { goto error;
    [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) {
58 if ((err = mp_gcd(p, tmp1, tmp2)) != CRYPT_OK) { goto done; }
59 } while (mp_cmp_d(tmp2, 1) != LTC_MP_EQ);
73 if ((err = mp_sub_d( q, 1, tmp2)) != CRYPT_OK) { goto error2; } /* tmp2 = p-1 */
74 if ((err = mp_lcm(tmp1, tmp2, key->d)) != CRYPT_OK) { goto error2; } /* tmp1 = lcd(p-1,q-1) */
80 if ((err = mp_mod( key->d, tmp2, key->dQ)) != CRYPT_OK) { goto error2; } /* dQ = d mod q-1 */
93 mp_clear_multi( tmp2, tmp1, p, q, NULL);
  /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) {
60 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(p-1, e) */
61 } while (mp_cmp_d( tmp2, 1) != 0); /* while e divides p-1 */
67 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(q-1, e) */
68 } while (mp_cmp_d( tmp2, 1) != 0); /* while e divides q-1 */
71 if ((err = mp_sub_d( p, 1, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = p-1 *
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_halfpel_inline.h 31 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
33 tmp = (tmp2 >> 1) - tmp;
40 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
42 tmp = (tmp >> 2) - tmp2;
51 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
55 rsbs tmp, tmp, tmp2, asr #1 ; local
63 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
67 rsbs tmp, tmp2, tmp, asr #2 ; local
77 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
84 : "r"(tmp2)
    [all...]
  /external/aac/libAACdec/src/arm/
block_arm.cpp 120 FIXP_DBL tmp0, tmp1, tmp2, tmp3; local
123 tmp2 = pSpectrum[2];
127 tmp2 >>= scale;
131 *pSpectrum++ = tmp2;
  /external/aac/libFDK/include/arm/
cplx_mul.h 110 LONG tmp1,tmp2; local
118 : "=&r"(tmp1), "=&r"(tmp2)
123 *c_Im = tmp2;
135 LONG tmp1, tmp2; local
141 "smlawb %1, %3, %4, %1;\n" /* tmp2 = a_Im * b_Re + a_Re * b_Im */
142 : "=&r"(tmp1), "=&r"(tmp2)
147 *c_Im = tmp2;
159 LONG tmp1, tmp2; local
166 : "=&r"(tmp1), "=&r"(tmp2)
171 *c_Im += tmp2;
184 LONG tmp1, tmp2; local
    [all...]
  /external/aac/libFDK/src/arm/
scale_arm.cpp 118 FIXP_DBL tmp2 = mySpec[2]; local
122 tmp2 = fMultDiv2(tmp2, factor);
126 tmp2 <<= shift;
130 *mySpec++ = tmp2;
148 FIXP_DBL tmp2 = mySpec[2]; local
152 tmp2 = fMultDiv2(tmp2, factor);
156 tmp2 >>= shift;
160 *mySpec++ = tmp2;
    [all...]
  /external/compiler-rt/lib/tsan/lit_tests/
simple_stack2.cc 14 int tmp2 = tmp; local
15 (void)tmp2;
21 int tmp2 = tmp; local
22 (void)tmp2;
27 int tmp2 = tmp; local
28 (void)tmp2;
  /external/fsck_msdos/
boot.c 178 char tmp2[16]; local
179 snprintf(tmp2, sizeof(tmp2), "%.2x ", block[11 + i]);
180 strcat(tmp, tmp2);
187 char tmp2[16]; local
188 snprintf(tmp2, sizeof(tmp2), "%.2x ", backup[11 + i]);
189 strcat(tmp, tmp2);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
gmed_n.cpp 134 Word16 tmp2[NMAX];
138 tmp2[i] = ind[i];
146 if (sub (tmp2[j], max) >= 0)
148 max = tmp2[j];
152 tmp2[ix] = -32768;
192 Word16 tmp2[NMAX]; local
196 *(tmp2 + i) = *(ind + i);
204 if (*(tmp2 + j) >= max)
206 max = *(tmp2 + j);
210 *(tmp2 + ix) = -32768
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_reorder.cpp 156 int32 tmp2 = xr[src_line+(sfb_lines)]; local
160 Scratch_mem[freq+1] = tmp2;
177 int32 tmp2 = xr[src_line+(sfb_lines)]; local
181 Scratch_mem[freq+1] = tmp2;
  /external/dropbear/libtommath/
bn_mp_toom_mul.c 27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
33 &b2, &tmp1, &tmp2, NULL)) != MP_OKAY) {
96 if ((res = mp_mul_2(&b0, &tmp2)) != MP_OKAY) {
99 if ((res = mp_add(&tmp2, &b1, &tmp2)) != MP_OKAY) {
102 if ((res = mp_mul_2(&tmp2, &tmp2)) != MP_OKAY) {
105 if ((res = mp_add(&tmp2, &b2, &tmp2)) != MP_OKAY) {
109 if ((res = mp_mul(&tmp1, &tmp2, &w1)) != MP_OKAY)
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_filter_gnu.s 51 tmp2 .req r10 label
91 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1
92 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
103 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1
107 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
    [all...]
ARM-E_interpolate_loop_gnu.s 47 tmp2 .req r6 label
92 ADD tmp2, phaseIncrement, phaseFrac @ increment pointer here to avoid pipeline stall
95 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
116 ADD pPhaseAccum, pPhaseAccum, tmp2, LSR #(NUM_PHASE_FRAC_BITS - NEXT_INPUT_PCM_SHIFT)
117 AND phaseFrac, tmp2, phaseFracMask @ nphaseFrac = frac part
ARM-E_interpolate_noloop_gnu.s 51 tmp2 .req r9 label
84 ADD tmp2, phaseIncrement, phaseFrac @ increment pointer here to avoid pipeline stall
87 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
108 ADD pPhaseAccum, pPhaseAccum, tmp2, LSR #(NUM_PHASE_FRAC_BITS - NEXT_INPUT_PCM_SHIFT)
109 AND phaseFrac, tmp2, phaseFracMask @ nphaseFrac = frac part
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_filter_gnu.s 51 tmp2 .req r10 label
91 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1
92 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
103 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1
107 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
    [all...]
ARM-E_interpolate_loop_gnu.s 47 tmp2 .req r6 label
92 ADD tmp2, phaseIncrement, phaseFrac @ increment pointer here to avoid pipeline stall
95 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
116 ADD pPhaseAccum, pPhaseAccum, tmp2, LSR #(NUM_PHASE_FRAC_BITS - NEXT_INPUT_PCM_SHIFT)
117 AND phaseFrac, tmp2, phaseFracMask @ nphaseFrac = frac part
ARM-E_interpolate_noloop_gnu.s 51 tmp2 .req r9 label
84 ADD tmp2, phaseIncrement, phaseFrac @ increment pointer here to avoid pipeline stall
87 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
108 ADD pPhaseAccum, pPhaseAccum, tmp2, LSR #(NUM_PHASE_FRAC_BITS - NEXT_INPUT_PCM_SHIFT)
109 AND phaseFrac, tmp2, phaseFracMask @ nphaseFrac = frac part
  /external/webrtc/src/common_audio/signal_processing/
resample_fractional.c 154 WebRtc_Word32 tmp2 = 16384; local
159 tmp2 += coef * in2[-0];
163 tmp2 += coef * in2[-1];
167 tmp2 += coef * in2[-2];
171 tmp2 += coef * in2[-3];
175 tmp2 += coef * in2[-4];
179 tmp2 += coef * in2[-5];
183 tmp2 += coef * in2[-6];
187 tmp2 += coef * in2[-7];
191 *out2 = tmp2 + coef * in2[-8]
    [all...]
  /external/wpa_supplicant_8/src/crypto/
sha1-pbkdf2.c 18 unsigned char tmp[SHA1_MAC_LEN], tmp2[SHA1_MAC_LEN]; local
47 SHA1_MAC_LEN, tmp2))
49 os_memcpy(tmp, tmp2, SHA1_MAC_LEN);
51 digest[j] ^= tmp2[j];
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
c_g_aver.cpp 286 Word16 tmp[M], tmp1, tmp2, shift1, shift2, shift;
307 tmp2 = shl(lspAver[i], shift2); // Q15+Qm
308 tmp[i] = div_s(tmp1, tmp2); // Q15+(Q15+Qn)-(Q15+Qm)
487 Word16 tmp2; local
521 tmp2 = shl(*(lspAver + i), shift2, pOverflow); /* Q15+Qm */
522 tmp[i] = div_s(tmp1, tmp2); /* Q15+(Q15+Qn)-(Q15+Qm) */
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
band_pass_6k_7k.cpp 194 int16 tmp2 = x[(i<<2)+j+1]; local
198 L_tmp2 = fxp_mac_16by16(tmp2, fir_6k_7k[j ], L_tmp2);
199 L_tmp1 = fxp_mac_16by16(tmp2, fir_6k_7k[j+1], L_tmp1);
205 tmp2 = x[(i<<2)+j+4];
211 L_tmp2 = fxp_mac_16by16(tmp2, fir_6k_7k[j+3], L_tmp2);
212 L_tmp4 = fxp_mac_16by16(tmp2, fir_6k_7k[j+1], L_tmp4);
213 L_tmp3 = fxp_mac_16by16(tmp2, fir_6k_7k[j+2], L_tmp3);
216 tmp2 = x[(i<<2)+j+6];
220 L_tmp4 = fxp_mac_16by16(tmp2, fir_6k_7k[j+3], L_tmp4);

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 910