/frameworks/compile/libbcc/runtime/lib/ |
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;
|
/packages/apps/Camera/jni/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...] |
/frameworks/base/core/java/android/text/ |
SpannableStringInternal.java | 308 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local 309 int n = recip.length; 312 recip[i].onSpanAdded((Spannable) this, what, start, end); method 317 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local 318 int n = recip.length; 321 recip[i].onSpanRemoved((Spannable) this, what, start, end); method 326 SpanWatcher[] recip = getSpans(Math.min(s, st), Math.max(e, en), local 328 int n = recip.length; 331 recip[i].onSpanChanged((Spannable) this, what, s, e, st, en); method
|
SpannableStringBuilder.java | 867 TextWatcher[] recip = getSpans(start, start + before, TextWatcher.class); local 868 int n = recip.length; 871 recip[i].beforeTextChanged(this, start, before, after); 874 return recip; 877 private void sendTextChange(TextWatcher[] recip, int start, int before, int after) { 878 int n = recip.length; 881 recip[i].onTextChanged(this, start, before, after); 885 private void sendTextHasChanged(TextWatcher[] recip) { 886 int n = recip.length; 889 recip[i].afterTextChanged(this) 894 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local 903 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local 912 SpanWatcher[] recip = getSpans(Math.min(s, st), Math.max(e, en), SpanWatcher.class); local [all...] |
/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 401 else if (!strcmp (*args, "-recip")) 620 BIO_printf (bio_err, "-recip file recipient certificate file for decryption\n"); 736 if (!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL, 1038 if (!CMS_decrypt_set1_pkey(cms, key, recip)) 1180 X509_free(recip); [all...] |