HomeSort by relevance Sort by last modified time
    Searched defs:exp10 (Results 1 - 3 of 3) 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);
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_context.c 731 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
734 *exp10 = (*exp10 / 1000) * 1024;
745 uint64_t exp10; local
755 /* Find the left-most digit. Make sure exp10 * 10 and fixup_bytes doesn't
757 exp10 = 1;
758 for (i = 0; exp10 <= UINT64_MAX / 11 && exp10 * 9 < value; i++) {
759 exp10 *= 10;
760 fixup_bytes(pane->type, i + 1, &exp10);
    [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 187 milliseconds