Searched refs:uint (Results 1 – 2 of 2) sorted by relevance
/picolibc-latest/newlib/libc/tinystdio/ |
D | conv_flt.c | 203 UINTFLOAT uint; in conv_flt() local 268 uint = U32_TO_UF(0); in conv_flt() 338 uint = UF_PLUS_DIGIT(UF_TIMES_BASE(uint, base), c); in conv_flt() 339 if (!UF_IS_ZERO(uint)) in conv_flt() 346 } else if (TOLOWER(i) == 'x' && (flags & FL_ANY) && UF_IS_ZERO(uint)) { in conv_flt() 418 if (UF_IS_ZERO(uint)) { in conv_flt() 447 while (UF_LT(uint, UF_LSHIFT_64(1, (sig_bits + 2 - 1)))) { in conv_flt() 448 uint = UF_LSHIFT(uint, 1); in conv_flt() 456 while (UF_GE(uint, UF_LSHIFT_64(1, (sig_bits + 2))) || exp < min_exp) { in conv_flt() 458 uint = UF_OR_64(UF_RSHIFT(uint, 1), UF_AND_64(uint, 1)); in conv_flt() [all …]
|
/picolibc-latest/newlib/libc/include/sys/ |
D | types.h | 118 typedef unsigned int uint; /* System V compatibility */ typedef
|