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

  /external/ltp/testcases/realtime/lib/
libstats.c 52 # define exp10(x) (exp((x) * log(10))) macro
235 (data->index + 1) < (long)exp10(quantiles->nines)) {
243 index = size - size / exp10(i);
255 fraction += 9 * exp10(i - 1);
  /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...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_context.c 678 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
681 *exp10 = (*exp10 / 1000) * 1024;
692 uint64_t exp10; local
703 exp10 = 1;
704 for (i = 0; value > 9 * exp10; i++) {
705 exp10 *= 10;
706 fixup_bytes(pane->type, i + 1, &exp10);
709 leftmost_digit = DIV_ROUND_UP(value, exp10);
714 exp10 *= 10
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 466 extern float __attribute__((overloadable)) exp10(float v) { function
469 FN_FUNC_FN(exp10)
1927 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 174 milliseconds