Searched refs:mtmp (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | cmyk.h | 31 double mtmp = 1.0 - ((double)g / 255.0); in LOCAL() local 33 double ktmp = MIN(MIN(ctmp, mtmp), ytmp); in LOCAL() 35 if (ktmp == 1.0) ctmp = mtmp = ytmp = 0.0; in LOCAL() 38 mtmp = (mtmp - ktmp) / (1.0 - ktmp); in LOCAL() 42 *m = (JSAMPLE)(255.0 - mtmp * 255.0 + 0.5); in LOCAL()
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | cmyk.h | 31 double mtmp = 1.0 - ((double)g / 255.0); in LOCAL() local 33 double ktmp = MIN(MIN(ctmp, mtmp), ytmp); in LOCAL() 35 if (ktmp == 1.0) ctmp = mtmp = ytmp = 0.0; in LOCAL() 38 mtmp = (mtmp - ktmp) / (1.0 - ktmp); in LOCAL() 42 *m = (JSAMPLE)(255.0 - mtmp * 255.0 + 0.5); in LOCAL()
|
/third_party/libjpeg-turbo/ |
D | cmyk.h | 31 double mtmp = 1.0 - ((double)g / 255.0); in LOCAL() local 33 double ktmp = MIN(MIN(ctmp, mtmp), ytmp); in LOCAL() 35 if (ktmp == 1.0) ctmp = mtmp = ytmp = 0.0; in LOCAL() 38 mtmp = (mtmp - ktmp) / (1.0 - ktmp); in LOCAL() 42 *m = (JSAMPLE)(255.0 - mtmp * 255.0 + 0.5); in LOCAL()
|
/third_party/openssl/crypto/ec/ |
D | ecdh_kdf.c | 37 unsigned char mtmp[EVP_MAX_MD_SIZE]; in ecdh_KDF_X9_63() local 58 if (!EVP_DigestFinal(mctx, mtmp, NULL)) in ecdh_KDF_X9_63() 60 memcpy(out, mtmp, outlen); in ecdh_KDF_X9_63() 61 OPENSSL_cleanse(mtmp, mdlen); in ecdh_KDF_X9_63()
|
/third_party/openssl/crypto/dh/ |
D | dh_kdf.c | 119 unsigned char mtmp[EVP_MAX_MD_SIZE]; in DH_KDF_X9_42() local 137 if (!EVP_DigestFinal(mctx, mtmp, NULL)) in DH_KDF_X9_42() 139 memcpy(out, mtmp, outlen); in DH_KDF_X9_42() 140 OPENSSL_cleanse(mtmp, mdlen); in DH_KDF_X9_42()
|
D | dh_lib.c | 23 const DH_METHOD *mtmp; in DH_set_method() local 24 mtmp = dh->meth; in DH_set_method() 25 if (mtmp->finish) in DH_set_method() 26 mtmp->finish(dh); in DH_set_method()
|
/third_party/openssl/crypto/dsa/ |
D | dsa_lib.c | 30 const DSA_METHOD *mtmp; in DSA_set_method() local 31 mtmp = dsa->meth; in DSA_set_method() 32 if (mtmp->finish) in DSA_set_method() 33 mtmp->finish(dsa); in DSA_set_method()
|
/third_party/ffmpeg/libavutil/ |
D | tx_template.c | 135 int64_t mtmp[4]; in fft3() local 145 mtmp[0] = (int64_t)TX_NAME(ff_cos_53)[0].re * tmp[0].re; in fft3() 146 mtmp[1] = (int64_t)TX_NAME(ff_cos_53)[0].im * tmp[0].im; in fft3() 147 mtmp[2] = (int64_t)TX_NAME(ff_cos_53)[1].re * tmp[1].re; in fft3() 148 mtmp[3] = (int64_t)TX_NAME(ff_cos_53)[1].re * tmp[1].im; in fft3() 149 out[1*stride].re = in[0].re - (mtmp[2] + mtmp[0] + 0x40000000 >> 31); in fft3() 150 out[1*stride].im = in[0].im - (mtmp[3] - mtmp[1] + 0x40000000 >> 31); in fft3() 151 out[2*stride].re = in[0].re - (mtmp[2] - mtmp[0] + 0x40000000 >> 31); in fft3() 152 out[2*stride].im = in[0].im - (mtmp[3] + mtmp[1] + 0x40000000 >> 31); in fft3()
|
/third_party/openssl/crypto/cms/ |
D | cms_lib.c | 321 EVP_MD_CTX *mtmp; in cms_DigestAlgorithm_find_ctx() local 328 BIO_get_md_ctx(chain, &mtmp); in cms_DigestAlgorithm_find_ctx() 329 if (EVP_MD_CTX_type(mtmp) == nid in cms_DigestAlgorithm_find_ctx() 334 || EVP_MD_pkey_type(EVP_MD_CTX_md(mtmp)) == nid) in cms_DigestAlgorithm_find_ctx() 335 return EVP_MD_CTX_copy_ex(mctx, mtmp); in cms_DigestAlgorithm_find_ctx()
|
/third_party/openssl/crypto/rsa/ |
D | rsa_lib.c | 36 const RSA_METHOD *mtmp; in RSA_set_method() local 37 mtmp = rsa->meth; in RSA_set_method() 38 if (mtmp->finish) in RSA_set_method() 39 mtmp->finish(rsa); in RSA_set_method()
|