Searched refs:INT_MAX (Results 1 - 25 of 40) sorted by relevance

12

/seL4-test-master/projects/musllibc/src/math/
H A Dscalbln.c6 if (n > INT_MAX)
7 n = INT_MAX;
H A Dscalblnf.c6 if (n > INT_MAX)
7 n = INT_MAX;
H A Dscalblnl.c13 if (n > INT_MAX)
14 n = INT_MAX;
H A Dilogb.c23 return i<<12 ? FP_ILOGBNAN : INT_MAX;
H A Dilogbf.c23 return i<<9 ? FP_ILOGBNAN : INT_MAX;
H A Dilogbl.c28 return m<<1 ? FP_ILOGBNAN : INT_MAX;
51 return u.f ? FP_ILOGBNAN : INT_MAX;
/seL4-test-master/projects/musllibc/src/legacy/
H A Dgetdtablesize.c10 return rl.rlim_cur < INT_MAX ? rl.rlim_cur : INT_MAX;
/seL4-test-master/projects/musllibc/src/stdio/
H A Dvsprintf.c6 return vsnprintf(s, INT_MAX, fmt, ap);
H A Dgets.c7 char *ret = fgets(s, INT_MAX, stdin);
H A Dvfprintf.c275 if (p > INT_MAX-2-(ebuf-estr)-pl)
389 if (p > INT_MAX-1-(p || (fl&ALT_FORM)))
393 if (e > INT_MAX-l) return -1;
400 if (ebuf-estr > INT_MAX-l) return -1;
404 if (l > INT_MAX-pl) return -1;
449 if (i > INT_MAX/10U || **s-'0' > INT_MAX-10*i) i = -1;
475 if (l > INT_MAX - cnt) goto overflow;
484 if (z-a > INT_MAX-cnt) goto overflow;
619 z = a + strnlen(a, p<0 ? INT_MAX
[all...]
H A Dvsnprintf.c48 if (n > INT_MAX) {
/seL4-test-master/projects/musllibc/src/thread/
H A Dpthread_barrier_init.c5 if (count-1 > INT_MAX-1) return EINVAL;
H A Dpthread_barrier_destroy.c9 while ((v = b->_b_lock) & INT_MAX)
H A Dpthread_mutex_trylock.c13 if ((unsigned)m->_m_count >= INT_MAX) return EAGAIN;
/seL4-test-master/projects/musllibc/src/network/
H A Drecvmsg.c9 #if LONG_MAX > INT_MAX
18 #if LONG_MAX > INT_MAX
H A Drecvmmsg.c8 #if LONG_MAX > INT_MAX
H A Dsendmmsg.c9 #if LONG_MAX > INT_MAX
20 * sent by sendmsg to INT_MAX, so the assignment is safe. */
H A Dsendmsg.c10 #if LONG_MAX > INT_MAX
/seL4-test-master/projects/musllibc/src/time/
H A Dtimer_getoverrun.c9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX);
H A Dtimer_gettime.c9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX);
H A Dtimer_settime.c9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX);
H A Dlocaltime_r.c9 if (*t < INT_MIN * 31622400LL || *t > INT_MAX * 31622400LL) {
H A D__secs_to_tm.c21 if (t < INT_MIN * 31622400LL || t > INT_MAX * 31622400LL)
68 if (years+100 > INT_MAX || years+100 < INT_MIN)
/seL4-test-master/projects/musllibc/include/
H A Dvalues.h19 #define MAXINT INT_MAX
/seL4-test-master/projects/util_libs/libplatsupport/include/platsupport/sync/
H A Datomic.h32 if (*oldval == INT_MAX) {

Completed in 355 milliseconds

12