Home
last modified time | relevance | path

Searched refs:ceil_log2pow5 (Results 1 – 3 of 3) sorted by relevance

/picolibc-latest/newlib/libc/tinystdio/
Datof_ryu.c93 int j = e2 - e10 - ceil_log2pow5(e10) + FLOAT_POW5_BITCOUNT; in __atof_engine()
104 e2 = floor_log2(m10) + e10 - ceil_log2pow5(-e10) - (FLOAT_MANTISSA_BITS + 1); in __atof_engine()
107 int j = e2 - e10 + ceil_log2pow5(-e10) - 1 + FLOAT_POW5_INV_BITCOUNT; in __atof_engine()
Datod_ryu.c96 int j = e2 - e10 - ceil_log2pow5(e10) + DOUBLE_POW5_BITCOUNT; in __atod_engine()
113 e2 = floor_log2(m10) + e10 - ceil_log2pow5(-e10) - (DOUBLE_MANTISSA_BITS + 1); in __atod_engine()
114 int j = e2 - e10 + ceil_log2pow5(-e10) - 1 + DOUBLE_POW5_INV_BITCOUNT; in __atod_engine()
/picolibc-latest/newlib/libc/tinystdio/ryu/
Dcommon.h52 #define ceil_log2pow5(e) __ceil_log2pow5(e) macro