Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libm/common/
Ds_llrint.c100 …if (sizeof (long long) == 4 && (__float64) LLONG_MIN - _F_64(1.0) < x && x < (__float64) LLONG_MIN in llrint64()
101 if (nearbyint(x) == LLONG_MIN) in llrint64()
105 return LLONG_MIN; in llrint64()
107 else if (x != LLONG_MIN) in llrint64()
110 return sx ? LLONG_MIN : LLONG_MAX; in llrint64()
Ds_llround.c82 !((sizeof(long long) == 4 && x > LLONG_MIN - 0.5) || in llround64()
83 (sizeof(long long) > 4 && x >= LLONG_MIN))) in llround64()
86 return sign == 1 ? LLONG_MAX : LLONG_MIN; in llround64()
Dsf_llround.c47 if (x != (float) LLONG_MIN) in llroundf()
49 return sign == 1 ? LLONG_MAX : LLONG_MIN; in llroundf()
Dsf_llrint.c74 if (x != LLONG_MIN) in llrintf()
77 return sx ? LLONG_MIN : LLONG_MAX; in llrintf()
/picolibc-latest/newlib/libc/include/
Dlimits.h104 # undef LLONG_MIN
105 # define LLONG_MIN (-LLONG_MAX-1) macro
/picolibc-latest/newlib/libc/stdlib/
Dstrtoll.c178 cutoff = neg ? -(unsigned long long)LLONG_MIN : LLONG_MAX; in _strtoll_l()
201 acc = neg ? LLONG_MIN : LLONG_MAX; in _strtoll_l()
Dwcstoll.c179 cutoff = neg ? -(unsigned long long)LLONG_MIN : LLONG_MAX; in wcstoll_l()
202 acc = neg ? LLONG_MIN : LLONG_MAX; in wcstoll_l()
/picolibc-latest/newlib/libm/ld/common/
Ds_llrintl.c3 #define DTYPE_MIN LLONG_MIN
/picolibc-latest/newlib/libc/tinystdio/
Dstrtoll.c36 #define strtoi_min LLONG_MIN
/picolibc-latest/newlib/libm/ld/
Ds_llroundl.c43 #define DTYPE_MIN LLONG_MIN
/picolibc-latest/test/
Dmath_errhandling_tests.c64 #define FLOAT_LONG_LONG_MIN (long long) (LLONG_MIN & FLOAT_LONG_LONG_MASK)
68 volatile const FLOAT_T makemathname(long_long_min_one) = (FLOAT_T) ((FLOAT_T) LLONG_MIN - (FLOAT_T)…
76 #define LROUND_LLONG_MAX LLONG_MIN
1488 TEST(llrint_long_long_min_one, LLONG_MIN, FE_INVALID, 0),
1510 TEST(llround_long_long_min_one, LLONG_MIN, FE_INVALID, 0),
/picolibc-latest/newlib/
DChangeLog-20152038 * libc/include/limits.h: Define LLONG_MIN, LLONG_MAX and ULLONG_MAX