HomeSort by relevance Sort by last modified time
    Searched refs:recip (Results 1 - 19 of 19) sorted by null

  /external/compiler-rt/lib/builtins/
powidf2.c 22 const int recip = b < 0; local
33 return recip ? 1/r : r;
powisf2.c 22 const int recip = b < 0; local
33 return recip ? 1/r : r;
powitf2.c 24 const int recip = b < 0; local
35 return recip ? 1/r : r;
powixf2.c 24 const int recip = b < 0; local
35 return recip ? 1/r : r;
  /development/perftests/panorama/feature_stab/db_vlvm/
db_feature_matching.h 31 DB_API void db_SignedSquareNormCorr21x21_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip);
32 DB_API void db_SignedSquareNormCorr11x11_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip);
51 float recip; member in class:db_PointInfo_f
78 float recip; member in class:db_PointInfo_u
db_feature_matching.cpp 402 inline void db_SignedSquareNormCorr11x11_Pre_u(unsigned char **f_img,int x_f,int y_f,float *sum,float *recip)
556 *recip=(float)(((den!=0.0)?1.0/den:0.0));
559 inline void db_SignedSquareNormCorr5x5_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip)
623 *recip= (float)((den!=0.0)?1.0/den:0.0);
626 inline void db_SignedSquareNormCorr21x21_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip)
653 *recip= (float)((den!=0.0)?1.0/den:0.0);
660 inline void db_SignedSquareNormCorr11x11_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip)
    [all...]
  /external/openssl/crypto/cms/
cms_env.c 148 X509 *recip, unsigned int flags)
173 X509_check_purpose(recip, -1, -1);
174 pk = X509_get_pubkey(recip);
181 CRYPTO_add(&recip->references, 1, CRYPTO_LOCK_X509);
183 ktri->recip = recip;
202 if (!cms_set1_SignerIdentifier(ktri->rid, recip, type))
238 EVP_PKEY **pk, X509 **recip,
253 if (recip)
254 *recip = ktri->recip
    [all...]
cms_smime.c 578 X509 *recip; local
584 recip = sk_X509_value(certs, i);
585 if (!CMS_add1_recipient_cert(cms, recip, flags))
cms.h 195 X509 *recip, unsigned int flags);
199 EVP_PKEY **pk, X509 **recip,
cms_asn1.c 228 if (ktri->recip)
229 X509_free(ktri->recip);
cms_lcl.h 203 X509 *recip; member in struct:CMS_KeyTransRecipientInfo_st
  /external/chromium_org/third_party/libjpeg_turbo/
jcdctmgr.c 376 UDCTELEM recip, corr, shift; local
382 recip = divisors[i + DCTSIZE2 * 0];
388 product = (UDCTELEM2)(temp + corr) * recip;
393 product = (UDCTELEM2)(temp + corr) * recip;
  /external/openssl/apps/
smime.c 101 X509 *cert = NULL, *recip = NULL, *signer = NULL; local
274 else if (!strcmp (*args, "-recip"))
468 BIO_printf (bio_err, "-recip file recipient certificate file for decryption\n");
580 if (!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL,
747 if (!PKCS7_decrypt(p7, key, recip, out, flags))
815 X509_free(recip);
cms.c 117 X509 *cert = NULL, *recip = NULL, *signer = NULL; local
411 else if (!strcmp (*args, "-recip"))
630 BIO_printf (bio_err, "-recip file recipient certificate file for decryption\n");
746 if (!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL,
1061 if (!CMS_decrypt_set1_pkey(cms, key, recip))
1215 X509_free(recip);
    [all...]
  /external/openssl/include/openssl/
cms.h 195 X509 *recip, unsigned int flags);
199 EVP_PKEY **pk, X509 **recip,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_exec.c 928 float recip = 1.0f / src->f[i]; local
930 if (recip > 0.0f) {
931 if (recip > 1.884467e+019f) {
934 else if (recip < 5.42101e-020f) {
938 dst->f[i] = recip;
942 if (recip < -1.884467e+019f) {
945 else if (recip > -5.42101e-020f) {
949 dst->f[i] = recip;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.c 928 float recip = 1.0f / src->f[i]; local
930 if (recip > 0.0f) {
931 if (recip > 1.884467e+019f) {
934 else if (recip < 5.42101e-020f) {
938 dst->f[i] = recip;
942 if (recip < -1.884467e+019f) {
945 else if (recip > -5.42101e-020f) {
949 dst->f[i] = recip;
    [all...]
  /external/libpng/
png.c 2717 int recip = 0; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 475 static private Target.Floaty recip(float f, Target t) { method in class:CoreMathVerifier
    [all...]

Completed in 502 milliseconds