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

  /libcore/luni/src/main/native/
cbigint.cpp 681 int exp10 = e; local
703 while (exp10 >= 19)
708 exp10 -= 19;
710 while (exp10 >= 9)
715 exp10 -= 9;
717 if (exp10 == 0)
719 else if (exp10 == 1)
725 else if (exp10 == 2)
734 else if (exp10 == 3)
740 else if (exp10 == 4
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 414 extern float __attribute__((overloadable)) exp10(float v) { function
417 FN_FUNC_FN(exp10)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 71 static native float exp10(float x); method in class:CoreMathVerifier
374 static private Target.Floaty exp10(float f, Target t) { method in class:CoreMathVerifier
377 exp10(in.mid32()),
378 exp10(in.min32()),
379 exp10(in.max32()));
    [all...]

Completed in 380 milliseconds