/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) { 54 if ((err = mp_set_int(tmp3, e)) != CRYPT_OK) { goto errkey; } /* tmp3 = e */ 60 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(p-1, e) */ 67 if ((err = mp_gcd( tmp1, tmp3, tmp2)) != CRYPT_OK) { goto errkey; } /* tmp2 = gcd(q-1, e) */ 104 mp_clear_multi(tmp3, tmp2, tmp1, p, q, NULL);
|
/external/aac/libAACdec/src/arm/ |
block_arm.cpp | 120 FIXP_DBL tmp0, tmp1, tmp2, tmp3; local 124 tmp3 = pSpectrum[3]; 128 tmp3 >>= scale; 132 *pSpectrum++ = tmp3;
|
/external/aac/libFDK/src/arm/ |
scale_arm.cpp | 119 FIXP_DBL tmp3 = mySpec[3]; local 123 tmp3 = fMultDiv2(tmp3, factor); 127 tmp3 <<= shift; 131 *mySpec++ = tmp3; 149 FIXP_DBL tmp3 = mySpec[3]; local 153 tmp3 = fMultDiv2(tmp3, factor); 157 tmp3 >>= shift; 161 *mySpec++ = tmp3; [all...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_reorder.cpp | 157 int32 tmp3 = xr[src_line+(sfb_lines<<1)]; local 161 Scratch_mem[freq+2] = tmp3; 178 int32 tmp3 = xr[src_line+(sfb_lines<<1)]; local 182 Scratch_mem[freq+2] = tmp3;
|
pvmp3_dct_6.cpp | 120 Int32 tmp3; local 132 tmp3 = vec[3] - vec[2]; 139 tmp0 = fxp_mul32_Q30(tmp3, cos_7_pi_12); 143 vec[3] = fxp_mul32_Q30((tmp3 + tmp4 - tmp5), cos_3_pi_12); 144 tmp0 = fxp_mul32_Q30(tmp3, cos_11_pi_12);
|
pvmp3_get_scale_factors.cpp | 201 uint32 tmp3 = getNbits(pMainData, tmp2); local 205 *(ptr++) = (tmp3 << (32 - tmp2)) >> tmp4;
|
pvmp3_mdct_18.cpp | 138 int32 tmp3; local 165 tmp3 = vec[16]; // 183 vec[13] = vec[15] - tmp3; 184 vec[15] = vec[17] - tmp3; 190 tmp3 = vec[9]; 196 vec[i+10] = tmp3 + tmp4; 199 tmp3 = tmp4; 206 vec[16] = tmp3 + tmp4; 237 tmp3 = history[10]; 241 vec[10] = fxp_mac32_Q32(tmp3, tmp4 << 1, window[10]) [all...] |
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
band_pass_6k_7k.cpp | 195 int16 tmp3 = x[(i<<2)+j+2]; local 200 L_tmp2 = fxp_mac_16by16(tmp3, fir_6k_7k[j+1], L_tmp2); 201 L_tmp3 = fxp_mac_16by16(tmp3, fir_6k_7k[j ], L_tmp3); 202 L_tmp1 = fxp_mac_16by16(tmp3, fir_6k_7k[j+2], L_tmp1);
|
isf_extrapolation.cpp | 122 int16 coeff, mean, tmp, tmp2, tmp3; local 162 tmp3 = sub_int16(IsfDiff[i - 2], mean); 163 L_tmp = mul_16by16_to_int32(tmp2, tmp3); 172 tmp3 = sub_int16(IsfDiff[i - 3], mean); 173 L_tmp = mul_16by16_to_int32(tmp2, tmp3); 182 tmp3 = sub_int16(IsfDiff[i - 4], mean); 183 L_tmp = mul_16by16_to_int32(tmp2, tmp3);
|
low_pass_filt_7k.cpp | 175 int16 tmp3 = x[(i<<2)+j+2]; local 180 L_tmp2 = fxp_mac_16by16(tmp3, fir_7k[j+1], L_tmp2); 181 L_tmp3 = fxp_mac_16by16(tmp3, fir_7k[j ], L_tmp3); 182 L_tmp1 = fxp_mac_16by16(tmp3, fir_7k[j+2], L_tmp1);
|
pred_lt4.cpp | 202 int16 tmp3 = pt_exc[i+2]; local 208 L_sum2 = fxp_mac_16by16(tmp3, pt_inter4_2[i+1], L_sum2); 209 L_sum3 = fxp_mac_16by16(tmp3, pt_inter4_2[i ], L_sum3); 210 L_sum1 = fxp_mac_16by16(tmp3, pt_inter4_2[i+2], L_sum1);
|
/external/chromium_org/third_party/openssl/openssl/crypto/aes/ |
aes_ige.c | 222 unsigned char tmp3[AES_BLOCK_SIZE]; local 296 memcpy(tmp3, tmp2, AES_BLOCK_SIZE); 297 iv = tmp3; 315 memcpy(tmp3, tmp2, AES_BLOCK_SIZE); 316 iv = tmp3;
|
/external/openssl/crypto/aes/ |
aes_ige.c | 222 unsigned char tmp3[AES_BLOCK_SIZE]; local 296 memcpy(tmp3, tmp2, AES_BLOCK_SIZE); 297 iv = tmp3; 315 memcpy(tmp3, tmp2, AES_BLOCK_SIZE); 316 iv = tmp3;
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
ARM-E_voice_gain_gnu.s | 48 tmp3 .req r6
label
|
/external/sonivox/arm-wt-22k/lib_src/ |
ARM-E_voice_gain_gnu.s | 48 tmp3 .req r6
label
|
/external/wpa_supplicant_8/src/crypto/ |
milenage.c | 39 u8 tmp1[16], tmp2[16], tmp3[16]; local 57 tmp3[(i + 8) % 16] = tmp2[i] ^ opc[i]; 60 tmp3[i] ^= tmp1[i]; 63 /* f1 || f1* = E_K(tmp3) XOR OP_c */ 64 if (aes_128_encrypt_block(k, tmp3, tmp1)) 91 u8 tmp1[16], tmp2[16], tmp3[16]; local 111 if (aes_128_encrypt_block(k, tmp1, tmp3)) 114 tmp3[i] ^= opc[i]; 116 os_memcpy(res, tmp3 + 8, 8); /* f2 */ 118 os_memcpy(ak, tmp3, 6); /* f5 * [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/ |
h264bsd_interpolate_mid_hor.s | 46 tmp3 RN 10
label 81 AND tmp3, count, #0x000F0000 ;// partWidth-1
84 ADD count, count, tmp3, LSL #12
95 SMULTB tmp3, x_2_0, mult_20_01
100 SMLATB tmp3, x_3_1, mult_20_m5, tmp3
106 SMLADX tmp3, x_6_4, mult_20_m5, tmp3
112 SMLADX tmp3, x_7_5, mult_20_01, tmp3
[all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_slice_data.c | 259 i32 tmp2, tmp3; local 265 tmp3 = pSlice->sliceBetaOffset; 269 pMb->filterOffsetB = tmp3;
|
/external/eigen/unsupported/test/ |
NumericalDiff.cpp | 39 double tmp1, tmp2, tmp3; local 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 60 tmp3 = (i>=8)? tmp2 : tmp1; 61 tmp4 = (x[1]*tmp2 + x[2]*tmp3); tmp4 = tmp4*tmp4; 64 fjac(i,2) = tmp1*tmp3/tmp4;
|
/external/ipsec-tools/src/racoon/ |
isakmp_unity.c | 394 uint32_t tmp3; local 397 tmp3 = ntohl(netentry->network.mask4.s_addr); 398 for (cidrmask = 0; tmp3 != 0; cidrmask++) 399 tmp3 <<= 1;
|
/external/jpeg/ |
jfdctflt.c | 61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 77 tmp3 = dataptr[3] + dataptr[4]; 82 tmp10 = tmp0 + tmp3; /* phase 2 */ 83 tmp13 = tmp0 - tmp3; 127 tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4]; 132 tmp10 = tmp0 + tmp3; /* phase 2 */ 133 tmp13 = tmp0 - tmp3;
|
jidctflt.c | 72 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 126 tmp3 = DEQUANTIZE(inptr[DCTSIZE*6], quantptr[DCTSIZE*6]); 131 tmp13 = tmp1 + tmp3; /* phases 5-3 */ 132 tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT) 1.414213562) - tmp13; /* 2*c4 */ 135 tmp3 = tmp10 - tmp13; 168 wsptr[DCTSIZE*4] = tmp3 + tmp4; 169 wsptr[DCTSIZE*3] = tmp3 - tmp4; 197 tmp3 = tmp10 - tmp13; 233 outptr[4] = range_limit[(int) DESCALE((INT32) (tmp3 + tmp4), 3) 235 outptr[3] = range_limit[(int) DESCALE((INT32) (tmp3 - tmp4), 3 [all...] |
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_intrapred4_dspr2.c | 19 int32_t tmp1, tmp2, tmp3, tmp4; local 24 "lb %[tmp3], 2(%[left]) \n\t" 28 "replv.qb %[tmp3], %[tmp3] \n\t" 34 "sw %[tmp3], (%[dst]) \n\t" 39 [tmp3] "=&r" (tmp3), [tmp4] "=&r" (tmp4)
|
/external/qemu/distrib/jpeg-6b/ |
jfdctflt.c | 61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 77 tmp3 = dataptr[3] + dataptr[4]; 82 tmp10 = tmp0 + tmp3; /* phase 2 */ 83 tmp13 = tmp0 - tmp3; 127 tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4]; 132 tmp10 = tmp0 + tmp3; /* phase 2 */ 133 tmp13 = tmp0 - tmp3;
|
jidctflt.c | 72 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 126 tmp3 = DEQUANTIZE(inptr[DCTSIZE*6], quantptr[DCTSIZE*6]); 131 tmp13 = tmp1 + tmp3; /* phases 5-3 */ 132 tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT) 1.414213562) - tmp13; /* 2*c4 */ 135 tmp3 = tmp10 - tmp13; 168 wsptr[DCTSIZE*4] = tmp3 + tmp4; 169 wsptr[DCTSIZE*3] = tmp3 - tmp4; 197 tmp3 = tmp10 - tmp13; 233 outptr[4] = range_limit[(int) DESCALE((INT32) (tmp3 + tmp4), 3) 235 outptr[3] = range_limit[(int) DESCALE((INT32) (tmp3 - tmp4), 3 [all...] |