Searched refs:INT_MAX (Results 1 – 25 of 35) sorted by relevance
12
/bionic/libc/bionic/ |
D | sleep.cpp | 36 if (s > INT_MAX) return s - INT_MAX + sleep(INT_MAX); in sleep()
|
D | __cxa_guard.cpp | 115 __futex_wake_ex(&gv->state, false, INT_MAX); in __cxa_guard_release() 124 __futex_wake_ex(&gv->state, false, INT_MAX); in __cxa_guard_abort()
|
D | pthread_once.cpp | 77 __futex_wake_ex(once_control_ptr, 0, INT_MAX); in pthread_once()
|
D | sysconf.cpp | 136 case _SC_DELAYTIMER_MAX: return INT_MAX; in sysconf()
|
D | semaphore.cpp | 296 __futex_wake_ex(sem_count_ptr, shared, INT_MAX); in sem_post()
|
D | pthread_cond.cpp | 214 return __pthread_cond_pulse(__get_internal_cond(cond_interface), INT_MAX); in pthread_cond_broadcast()
|
/bionic/libc/kernel/uapi/linux/ |
D | netfilter_ipv4.h | 43 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, 44 NF_IP_PRI_LAST = INT_MAX,
|
D | netfilter_bridge.h | 42 NF_BR_PRI_LAST = INT_MAX,
|
D | netfilter_ipv6.h | 43 NF_IP6_PRI_LAST = INT_MAX,
|
D | netfilter_decnet.h | 39 NF_DN_PRI_LAST = INT_MAX,
|
/bionic/tests/ |
D | limits_test.cpp | 49 #if !defined(INT_MAX) in TEST() 50 #error INT_MAX in TEST()
|
D | stdlib_test.cpp | 915 ASSERT_EQ(INT_MAX, abs(-INT_MAX)); in TEST() 916 ASSERT_EQ(INT_MAX, abs(INT_MAX)); in TEST() 944 ASSERT_EQ(3, getloadavg(load, INT_MAX)); in TEST()
|
D | async_safe_test.cpp | 114 async_safe_format_buffer(buf, sizeof(buf), "%d", INT_MAX); in TEST()
|
/bionic/libc/include/ |
D | limits.h | 83 #define INT_MAX 0x7fffffff /* max value for an int */ macro 129 #define SSIZE_MAX INT_MAX
|
D | math.h | 54 #define FP_ILOGB0 (-INT_MAX) 55 #define FP_ILOGBNAN INT_MAX
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | ldtoa.c | 104 *decpt = INT_MAX; in __ldtoa() 119 *decpt = INT_MAX; in __ldtoa()
|
D | hdtoa.c | 145 *decpt = INT_MAX; in __hdtoa() 148 *decpt = INT_MAX; in __hdtoa() 244 *decpt = INT_MAX; in __hldtoa() 247 *decpt = INT_MAX; in __hldtoa()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_ilogbf.c | 39 else return INT_MAX; in ilogbf()
|
D | s_ilogb.c | 47 else return INT_MAX; in ilogb()
|
D | s_ilogbl.c | 52 return (INT_MAX); in ilogbl()
|
/bionic/libc/stdio/ |
D | vfwprintf.cpp | 156 if (m < 0 || m > INT_MAX - ret) goto overflow; in FUNCTION_NAME() 348 if (expt == INT_MAX) ox[1] = '\0'; in FUNCTION_NAME() 387 if (expt == 9999) expt = INT_MAX; in FUNCTION_NAME() 395 if (expt == INT_MAX) { /* inf or nan */ in FUNCTION_NAME() 495 if ((len = CHAR_TYPE_STRLEN(cp)) > INT_MAX) goto overflow; in FUNCTION_NAME() 654 if (width > INT_MAX - ret) goto overflow; in FUNCTION_NAME()
|
D | vfprintf.cpp | 167 if (m < 0 || m > INT_MAX - ret) goto overflow; in FUNCTION_NAME() 370 if (expt == INT_MAX) ox[1] = '\0'; in FUNCTION_NAME() 405 if (expt == 9999) expt = INT_MAX; in FUNCTION_NAME() 409 if (expt == INT_MAX) { /* inf or nan */ in FUNCTION_NAME() 506 if ((len = CHAR_TYPE_STRLEN(cp)) > INT_MAX) goto overflow; in FUNCTION_NAME() 665 if (width > INT_MAX - ret) goto overflow; in FUNCTION_NAME()
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | mktemp.c | 74 tries = INT_MAX; in mktemp_internal()
|
/bionic/libc/tzcode/ |
D | private.h | 220 # if INT_MAX >> 31 == 0 226 # define INT_FAST32_MAX INT_MAX
|
/bionic/tests/headers/posix/ |
D | limits_h.c | 185 MACRO(INT_MAX); in limits_h()
|
12