Searched refs:tmp_2 (Results 1 – 4 of 4) sorted by relevance
/external/openssl/crypto/ec/ |
D | ec_asn1.c | 439 BIGNUM *tmp_1=NULL, *tmp_2=NULL; in ec_asn1_group2curve() local 448 if ((tmp_1 = BN_new()) == NULL || (tmp_2 = BN_new()) == NULL) in ec_asn1_group2curve() 459 if (!EC_GROUP_get_curve_GFp(group, NULL, tmp_1, tmp_2, NULL)) in ec_asn1_group2curve() 468 if (!EC_GROUP_get_curve_GF2m(group, NULL, tmp_1, tmp_2, NULL)) in ec_asn1_group2curve() 476 len_2 = (size_t)BN_num_bytes(tmp_2); in ec_asn1_group2curve() 514 if ( (len_2 = BN_bn2bin(tmp_2, buffer_2)) == 0) in ec_asn1_group2curve() 565 if (tmp_2) in ec_asn1_group2curve() 566 BN_free(tmp_2); in ec_asn1_group2curve()
|
D | ecp_smpl.c | 290 BIGNUM *a,*b,*order,*tmp_1,*tmp_2; in ec_GFp_simple_group_check_discriminant() local 307 tmp_2 = BN_CTX_get(ctx); in ec_GFp_simple_group_check_discriminant() 332 if (!BN_mod_mul(tmp_2, tmp_1, a, p, ctx)) goto err; in ec_GFp_simple_group_check_discriminant() 333 if (!BN_lshift(tmp_1, tmp_2, 2)) goto err; in ec_GFp_simple_group_check_discriminant() 336 if (!BN_mod_sqr(tmp_2, b, p, ctx)) goto err; in ec_GFp_simple_group_check_discriminant() 337 if (!BN_mul_word(tmp_2, 27)) goto err; in ec_GFp_simple_group_check_discriminant() 340 if (!BN_mod_add(a, tmp_1, tmp_2, p, ctx)) goto err; in ec_GFp_simple_group_check_discriminant()
|
/external/webrtc/src/common_audio/resampler/ |
D | resampler.cc | 493 WebRtc_Word16* tmp_2; in Push() local 864 tmp_2 = (WebRtc_Word16*) malloc((sizeof(WebRtc_Word16) * lengthIn) / 6); in Push() 879 WebRtcSpl_DownsampleBy2(tmp, outLen, tmp_2, in Push() 884 WebRtcSpl_DownsampleBy2(tmp_2, outLen, samplesOut, in Push() 886 free(tmp_2); in Push()
|
/external/webp/src/enc/ |
D | dsp_sse2.c | 500 __m128i tmp_0, tmp_1, tmp_2, tmp_3; in TTransformSSE2() local 539 tmp_2 = _mm_unpacklo_epi8(transpose1_1, zero); in TTransformSSE2() 550 const __m128i a0 = _mm_slli_epi16(_mm_add_epi16(tmp_0, tmp_2), 2); in TTransformSSE2() 553 const __m128i a3 = _mm_slli_epi16(_mm_sub_epi16(tmp_0, tmp_2), 2); in TTransformSSE2() 585 tmp_2 = _mm_unpacklo_epi64(transpose1_2, transpose1_3); in TTransformSSE2() 602 const __m128i a0 = _mm_add_epi16(tmp_0, tmp_2); in TTransformSSE2() 605 const __m128i a3 = _mm_sub_epi16(tmp_0, tmp_2); in TTransformSSE2()
|