HomeSort by relevance Sort by last modified time
    Searched refs:MUL_NO_OVERFLOW (Results 1 - 5 of 5) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
reallocarray.c 25 * if both s1 < MUL_NO_OVERFLOW and s2 < MUL_NO_OVERFLOW
27 #define MUL_NO_OVERFLOW ((size_t)1 << (sizeof(size_t) * 4))
32 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
  /external/giflib/
openbsd-reallocarray.c 25 * if both s1 < MUL_NO_OVERFLOW and s2 < MUL_NO_OVERFLOW
27 #define MUL_NO_OVERFLOW ((size_t)1 << (sizeof(size_t) * 4))
32 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
  /external/openssh/openbsd-compat/
reallocarray.c 32 * if both s1 < MUL_NO_OVERFLOW and s2 < MUL_NO_OVERFLOW
34 #define MUL_NO_OVERFLOW ((size_t)1 << (sizeof(size_t) * 4))
39 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fwrite.c 41 #define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4))
58 if ((size >= MUL_NO_OVERFLOW || count >= MUL_NO_OVERFLOW) &&
  /bionic/libc/stdio/
fread.c 41 #define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4))
49 if ((size >= MUL_NO_OVERFLOW || count >= MUL_NO_OVERFLOW) &&

Completed in 307 milliseconds