Home
last modified time | relevance | path

Searched refs:exp2 (Results 1 – 5 of 5) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_double/
Ddouble_none.S59 wrapper_func exp2
Ddouble_math.c330 double WRAPPER_FUNC(exp2)(double x) { in WRAPPER_FUNC() argument
358 if(a==0) return exp2(u*y); in dpow_1()
386 return dldexp(exp2(w),c); in dpow_1()
DCMakeLists.txt105 pico_wrap_function(${TARGET} exp2)
DBUILD.bazel52 "-Wl,--wrap=exp2",
/hal_rpi_pico-latest/src/rp2_common/pico_printf/
Dprintf.c475 int exp2 = (int) ((conv.U >> 52U) & 0x07FFU) - 1023; // effectively log2 in _etoa() local
478 … expval = (int) (0.1760912590558 + exp2 * 0.301029995663981 + (conv.F - 1.5) * 0.289529654602168); in _etoa()
480 exp2 = (int) (expval * 3.321928094887362 + 0.5); in _etoa()
481 const double z = expval * 2.302585092994046 - exp2 * 0.6931471805599453; in _etoa()
483 conv.U = (uint64_t) (exp2 + 1023) << 52U; in _etoa()