Searched refs:overflow (Results 1 – 10 of 10) sorted by relevance
/bionic/libc/private/ |
D | bionic_fdsan.h | 58 _Atomic(FdTableOverflow*) overflow = nullptr;
|
/bionic/libc/stdio/ |
D | vfwprintf.cpp | 156 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()
|
D | vfprintf.cpp | 167 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()
|
D | printf_common.h | 267 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/ |
D | fdsan.cpp | 63 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/ |
D | io_uring.h | 162 __u32 overflow; member
|
/bionic/linker/ |
D | Android.bp | 45 "-Wstrict-overflow=5", 94 "-Wstrict-overflow=5", 105 "-Wstrict-overflow=5",
|
/bionic/tests/ |
D | fdsan_test.cpp | 139 TEST_F(fdsan, overflow) { in TEST_F() argument
|
/bionic/docs/ |
D | 32-bit-abi.md | 86 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/ |
D | malloc_debug_config_tests.cpp | 100 TEST_F(MallocDebugConfigTest, overflow) { in TEST_F() argument
|