HomeSort by relevance Sort by last modified time
    Searched defs:recip (Results 1 - 14 of 14) 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;
  /packages/apps/LegacyCamera/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
  /external/libjpeg-turbo/
jcdctmgr.c 416 UDCTELEM recip, corr; local
422 recip = divisors[i + DCTSIZE2 * 0];
428 product = (UDCTELEM2)(temp + corr) * recip;
433 product = (UDCTELEM2)(temp + corr) * recip;
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 430 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local
431 int n = recip.length;
434 recip[i].onSpanAdded((Spannable) this, what, start, end); method
439 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local
440 int n = recip.length;
443 recip[i].onSpanRemoved((Spannable) this, what, start, end); method
448 SpanWatcher[] recip = getSpans(Math.min(s, st), Math.max(e, en), local
450 int n = recip.length;
453 recip[i].onSpanChanged((Spannable) this, what, s, e, st, en); method
SpannableStringBuilder.java 1279 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local
1288 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 214 double recip[] = new double[2]; external variable declarations
224 splitReciprocal(tmp, recip);
225 EXP_INT_TABLE_A[750-i] = recip[0];
226 EXP_INT_TABLE_B[750-i] = recip[1];
310 // recip = 1/y
311 double recip = 1.0/ya; local
312 temp = recip * HEX_40000000;
313 double recipa = recip + temp - temp;
314 double recipb = recip - recipa;
317 recipb += (1.0 - yaa*recipa - yaa*recipb - yab*recipa - yab*recipb) * recip;
375 double recip = 1.0\/ya; local
    [all...]
  /external/libpng/
png.c 2866 int recip = 0; local
    [all...]
  /external/pdfium/third_party/libpng16/
png.c 2828 int recip = 0; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 880 static private Target.Floaty recip(double d, Target t) { method in class:CoreMathVerifier
885 static private Target.Floaty recip(float f, Target t) { method in class:CoreMathVerifier
    [all...]
  /external/boringssl/src/third_party/fiat/
curve25519.c 1568 fe recip; local
1580 fe recip; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java 1610 String recip = ap.getFilterRecipient(); local
1943 String recip = ap.getFilterRecipient(); local
    [all...]

Completed in 773 milliseconds