Home
last modified time | relevance | path

Searched refs:overflow (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/private/
Dbionic_fdsan.h58 _Atomic(FdTableOverflow*) overflow = nullptr;
/bionic/libc/stdio/
Dvfwprintf.cpp156 if (m < 0 || m > INT_MAX - ret) goto overflow; in FUNCTION_NAME()
197 if (width == INT_MIN) goto overflow; 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()
663 overflow: in FUNCTION_NAME()
Dvfprintf.cpp167 if (m < 0 || m > INT_MAX - ret) goto overflow; in FUNCTION_NAME()
208 if (width == INT_MIN) goto overflow; 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()
677 overflow: in FUNCTION_NAME()
Dprintf_common.h267 if ((val) > INT_MAX / 10) goto overflow; \
269 if ((val) > INT_MAX - to_digit((dig))) goto overflow; \
629 overflow: in __find_arguments()
/bionic/libc/bionic/
Dfdsan.cpp63 FdTableOverflow* local_overflow = atomic_load(&overflow); in at()
95 if (atomic_compare_exchange_strong(&overflow, &local_overflow, new_overflow)) { in at()
/bionic/libc/kernel/uapi/linux/
Dio_uring.h162 __u32 overflow; member
/bionic/linker/
DAndroid.bp45 "-Wstrict-overflow=5",
94 "-Wstrict-overflow=5",
105 "-Wstrict-overflow=5",
/bionic/tests/
Dfdsan_test.cpp139 TEST_F(fdsan, overflow) { in TEST_F() argument
/bionic/docs/
D32-bit-abi.md86 On 32-bit Android, `time_t` is 32-bit, which will overflow in 2038.
88 In the 64-bit ABI, `time_t` is 64-bit, which will not overflow until
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_config_tests.cpp100 TEST_F(MallocDebugConfigTest, overflow) { in TEST_F() argument