Home
last modified time | relevance | path

Searched refs:decimal (Results 1 – 12 of 12) sorted by relevance

/picolibc-latest/newlib/libc/tinystdio/
Dftoa_engine.c164 int64_t decimal = 100000000000000ull; in __ftoa_engine() local
169 char digit = prod / decimal + '0'; in __ftoa_engine()
178 prod = prod % decimal; in __ftoa_engine()
179 decimal /= 10; in __ftoa_engine()
194 prod = prod % decimal; in __ftoa_engine()
195 decimal /= 10; in __ftoa_engine()
215 decimal *= 10; in __ftoa_engine()
216 if (prod - (decimal >> 1) >= 0) in __ftoa_engine()
/picolibc-latest/newlib/libm/test/
Dconvert.c206 test_strtol_base(10,&(p->decimal), p->string); in test_strtol()
215 if (p->decimal.errno_val == 0) in test_atoi()
216 test_iok(atoi(p->string), p->decimal.value); in test_atoi()
222 test_iok(atol(p->string), p->decimal.value); in test_atol()
223 test_eok(errno, p->decimal.errno_val); in test_atol()
Dtest.h257 int_scan_type decimal;
/picolibc-latest/newlib/libc/locale/
Dlocale.tex49 The decimal point character used to format ``ordinary'' numbers (all
/picolibc-latest/newlib/
DNEWS158 - multibyte decimal point support added to
DChangeLog-2015130 (_strtodg_r): Handle multibyte decimal point.
2060 decimal point into account.
4903 * libc/stdio/vfwprintf.c (_VFWPRINTF_R): Use wide char decimal point
5219 decimal point in case the float argument is an integral value.
5314 Handle grouping for decimal integer and float values.
6115 (gethex): Allow multibyte decimal point.
6118 (_strtod_r): Allow multibyte decimal point.
6120 endptr position if the decimal point is a multibyte char.
10371 * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix use of decimal point
10555 trailing decimal is printed.
/picolibc-latest/
DCMakeLists.txt355 option(_IO_FLOAT_EXACT "Provide exact binary/decimal conversion for printf/scanf" ON)
Dmeson_options.txt177 description: 'Avoid softare division in decimal conversions')
DREADME.md340 * Adjust use of custom binary to decimal conversion code so that it
384 * Provide a division-free binary to decimal conversion option for
548 long doubles). Still missing are Bessel functions and decimal
Dmeson.build1382 …NTF_SMALL_ULTOA', printf_small_ultoa, description: 'avoid software division in decimal conversion')
/picolibc-latest/doc/
Dprintf.md252 default, switches printf's binary-to-decimal conversion code to a
Dbuild.md91 … | false | Avoid soft division routine during integer binary to decimal conversion in pri…