HomeSort by relevance Sort by last modified time
    Searched defs:exp10 (Results 1 - 4 of 4) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Interpolation.java 80 static public final Exp exp10 = new Exp(2, 10); field in class:Interpolation
  /libcore/luni/src/main/native/
cbigint.cpp 539 int exp10 = e; local
561 while (exp10 >= 19)
566 exp10 -= 19;
568 while (exp10 >= 9)
573 exp10 -= 9;
575 if (exp10 == 0)
577 else if (exp10 == 1)
583 else if (exp10 == 2)
592 else if (exp10 == 3)
598 else if (exp10 == 4
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 463 extern float __attribute__((overloadable)) exp10(float v) { function
466 FN_FUNC_FN(exp10)
1924 HN_FUNC_HN(exp10); variable
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 71 static native float exp10(float x); method in class:CoreMathVerifier
576 static private Target.Floaty exp10(double d, Target t) { method in class:CoreMathVerifier
579 exp10((float) in.mid()),
580 exp10((float) in.min()),
581 exp10((float) in.max()));
584 static private Target.Floaty exp10(float f, Target t) { method in class:CoreMathVerifier
587 exp10(in.mid32()),
588 exp10(in.min32()),
589 exp10(in.max32()));
    [all...]

Completed in 408 milliseconds