Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/tinystdio/
Dldtox_engine.c64 # define LSIG_MSB_INF _u128_lshift(to_u128(1), __LDBL_MANT_DIG__-1)
79 # define LSIG_MSB _u128_lshift(to_u128(1), __LDBL_MANT_DIG__-1)
86 #define LSIG_MASK _u128_minus_64(_u128_lshift(to_u128(1), LSIG_BITS), 1)
123 _u128 half = _u128_lshift(to_u128(1), bits - 1); in __ldtox_engine()
139 if (_u128_ge(s, _u128_lshift(to_u128(1), __LDBL_MANT_DIG__))) { in __ldtox_engine()
Dconv_flt.c159 #define U32_TO_UF(x) to_u128(x)
160 #define U64_TO_UF(x) to_u128(x)
184 #define UF_TO_U128(x) to_u128(x)
Dstdio_private.h277 #define to_u128(x) (x) macro
315 static inline _u128 to_u128(uint64_t x) in to_u128() function