Searched defs:exp10 (Results 1 - 2 of 2) sorted by relevance

/external/ltp/testcases/realtime/lib/
H A Dlibstats.c52 # 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/
H A Dhud_context.c678 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10) argument
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 *
[all...]

Completed in 159 milliseconds