/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | exp10.c | 5 double exp10(double x) in exp10() function 24 weak_alias(exp10, pow10);
|
H A D | exp10l.c | 9 return exp10(x); in exp10l()
|
/third_party/musl/src/math/ |
H A D | exp10.c | 5 double exp10(double x) in exp10() function 24 weak_alias(exp10, pow10);
|
H A D | exp10l.c | 9 return exp10(x); in exp10l()
|
/third_party/ltp/testcases/realtime/lib/ |
H A D | libstats.c | 52 # define exp10(x) (exp((x) * log(10))) macro 235 (data->index + 1) < (long)exp10(quantiles->nines)) { in stats_quantiles_calc() 243 index = size - size / exp10(i); in stats_quantiles_calc() 255 fraction += 9 * exp10(i - 1); in stats_quantiles_print()
|
/third_party/mesa3d/src/gallium/auxiliary/hud/ |
H A D | hud_context.c | 757 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10) in fixup_bytes() argument 760 *exp10 = (*exp10 / 1000) * 1024; in fixup_bytes() 771 uint64_t exp10; in hud_pane_set_max_value() local 781 /* Find the left-most digit. Make sure exp10 * 10 and fixup_bytes doesn't in hud_pane_set_max_value() 783 exp10 = 1; in hud_pane_set_max_value() 784 for (i = 0; exp10 <= UINT64_MAX / 11 && exp10 * 9 < value; i++) { in hud_pane_set_max_value() 785 exp10 *= 10; in hud_pane_set_max_value() 786 fixup_bytes(pane->type, i + 1, &exp10); in hud_pane_set_max_value() [all...] |
/third_party/musl/libc-test/src/math/ |
H A D | exp10.c | 7 #include "sanity/exp10.h" 8 #include "special/exp10.h" 27 y = exp10(p->x); in main() 31 printf("%s:%d: bad fp exception: %s exp10(%a)=%a, want %s", in main() 38 printf("%s:%d: %s exp10(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 429 double exp10(double);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 429 double exp10(double);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 429 double exp10(double);
|
/third_party/musl/include/ |
H A D | math.h | 429 double exp10(double);
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | ext_inst.opencl_test.cpp | 122 CASE1(Exp10, exp10),
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | ext_inst.opencl_test.cpp | 122 CASE1(Exp10, exp10),
|
/third_party/spirv-tools/test/ |
H A D | ext_inst.opencl_test.cpp | 122 CASE1(Exp10, exp10),
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 238 int mpexp10(struct t *t) { return mpd1(t, exp10); } in mpexp10()
|
/third_party/mesa3d/src/microsoft/clc/ |
H A D | clc_compiler_test.cpp | 1249 TEST_F(ComputeTest, exp10) in TEST_F()
|
/third_party/astc-encoder/Source/ |
H A D | wuffs-v0.3.c | 14043 // - when parsing "12345.678e+02", man is 12345678 and exp10 is -1. 14044 // - when parsing "-12", man is 12 and exp10 is 0. Processing the leading 14060 // - exp10 is in the range [-307 ..= 288], the same range of the 14063 // The exp10 range (and the fact that man is in the range [1 ..= UINT64_MAX], 14064 // approximately [1 ..= 1.85e+19]) means that (man * (10 ** exp10)) is in the 14071 int32_t exp10) { in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 14072 // Look up the (possibly truncated) base-2 representation of (10 ** exp10). in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 14076 &wuffs_base__private_implementation__powers_of_10[exp10 + 307][0]; in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 14084 // later, but its initial value comes from a linear scaling of exp10, in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 14091 // (over the practical range of exp10) t in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 14069 wuffs_base__private_implementation__parse_number_f64_eisel_lemire( uint64_t man, int32_t exp10) wuffs_base__private_implementation__parse_number_f64_eisel_lemire() argument 14372 int32_t exp10 = h->decimal_point - ((int32_t)(h->num_digits)); wuffs_base__private_implementation__high_prec_dec__to_f64() local 14587 int32_t exp10 = 0; wuffs_base__parse_number_f64() local [all...] |
/third_party/skia/third_party/externals/wuffs/release/c/ |
H A D | wuffs-v0.3.c | 13147 // - when parsing "12345.678e+02", man is 12345678 and exp10 is -1. 13148 // - when parsing "-12", man is 12 and exp10 is 0. Processing the leading 13164 // - exp10 is in the range [-307 ..= 288], the same range of the 13167 // The exp10 range (and the fact that man is in the range [1 ..= UINT64_MAX], 13168 // approximately [1 ..= 1.85e+19]) means that (man * (10 ** exp10)) is in the 13175 int32_t exp10) { in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 13176 // Look up the (possibly truncated) base-2 representation of (10 ** exp10). in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 13180 &wuffs_base__private_implementation__powers_of_10[exp10 + 307][0]; in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 13188 // later, but its initial value comes from a linear scaling of exp10, in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 13195 // (over the practical range of exp10) t in wuffs_base__private_implementation__parse_number_f64_eisel_lemire() 13173 wuffs_base__private_implementation__parse_number_f64_eisel_lemire( uint64_t man, int32_t exp10) wuffs_base__private_implementation__parse_number_f64_eisel_lemire() argument 13476 int32_t exp10 = h->decimal_point - ((int32_t)(h->num_digits)); wuffs_base__private_implementation__high_prec_dec__to_f64() local 13691 int32_t exp10 = 0; wuffs_base__parse_number_f64() local [all...] |
/third_party/vixl/test/aarch64/ |
H A D | test-assembler-sve-aarch64.cc | 2877 int exp10[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0}; 2881 PfirstHelper(config, in1, in0, exp10); 3003 int exp10[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0}; 3041 PnextHelper(config, kBRegSize, in1, in0, exp10); 3092 int exp10[] = {0, 0, 0, 0, 0, 0, 1, 0}; 3130 PnextHelper(config, kHRegSize, in1, in0, exp10); 3180 int exp10[] = {0, 0, 0, 1}; 3206 PnextHelper(config, kSRegSize, in1, in0, exp10); 3245 int exp10[] = {0, 1}; 3261 PnextHelper(config, kDRegSize, in1, in0, exp10); [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 33538 extern double exp10 (double __x) throw (); extern double __exp10 (double __x) throw (); [all...] |