HomeSort by relevance Sort by last modified time
    Searched full:__predict_false (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /bionic/libc/bionic/
__FD_chk.cpp 34 if (__predict_false(fd < 0)) {
37 if (__predict_false(fd >= FD_SETSIZE)) {
40 if (__predict_false(set_size < sizeof(fd_set))) {
47 if (__predict_false(fd < 0)) {
50 if (__predict_false(fd >= FD_SETSIZE)) {
53 if (__predict_false(set_size < sizeof(fd_set))) {
60 if (__predict_false(fd < 0)) {
63 if (__predict_false(fd >= FD_SETSIZE)) {
66 if (__predict_false(set_size < sizeof(fd_set))) {
__pread64_chk.cpp 34 if (__predict_false(count > buf_size)) {
38 if (__predict_false(count > SSIZE_MAX)) {
__pread_chk.cpp 34 if (__predict_false(count > buf_size)) {
38 if (__predict_false(count > SSIZE_MAX)) {
__read_chk.cpp 34 if (__predict_false(count > buf_size)) {
38 if (__predict_false(count > SSIZE_MAX)) {
__readlink_chk.cpp 34 if (__predict_false(size > buf_size)) {
38 if (__predict_false(size > SSIZE_MAX)) {
__write_chk.cpp 34 if (__predict_false(count > buf_size)) {
38 if (__predict_false(count > SSIZE_MAX)) {
__fread_chk.cpp 37 if (__predict_false(__size_mul_overflow(size, count, &total))) {
42 if (__predict_false(total > buf_size)) {
__fwrite_chk.cpp 37 if (__predict_false(__size_mul_overflow(size, count, &total))) {
42 if (__predict_false(total > buf_size)) {
__poll_chk.cpp 34 if (__predict_false(fds_size / sizeof(*fds) < fd_count)) {
41 if (__predict_false(fds_size / sizeof(*fds) < fd_count)) {
__pwrite64_chk.cpp 35 if (__predict_false(count > buf_size)) {
39 if (__predict_false(count > SSIZE_MAX)) {
__pwrite_chk.cpp 35 if (__predict_false(count > buf_size)) {
39 if (__predict_false(count > SSIZE_MAX)) {
__readlinkat_chk.cpp 34 if (__predict_false(size > buf_size)) {
38 if (__predict_false(size > SSIZE_MAX)) {
__stpncpy_chk.cpp 48 if (__predict_false(len > dest_len)) {
67 if (__predict_false(n > dest_len)) {
86 if (__predict_false(s_copy_len > src_len)) {
__strncpy_chk.cpp 48 if (__predict_false(len > dest_len)) {
67 if (__predict_false(n > dest_len)) {
86 if (__predict_false(s_copy_len > src_len)) {
__getcwd_chk.cpp 35 if (__predict_false(len > buflen)) {
__memchr_chk.cpp 34 if (__predict_false(n > buf_size)) {
__memrchr_chk.cpp 34 if (__predict_false(n > buf_size)) {
malloc_common.cpp 81 if (__predict_false(_calloc != nullptr)) {
89 if (__predict_false(_free != nullptr)) {
98 if (__predict_false(_mallinfo != nullptr)) {
106 if (__predict_false(_malloc != nullptr)) {
114 if (__predict_false(_malloc_usable_size != nullptr)) {
122 if (__predict_false(_memalign != nullptr)) {
130 if (__predict_false(_posix_memalign != nullptr)) {
138 if (__predict_false(_realloc != nullptr)) {
147 if (__predict_false(_pvalloc != nullptr)) {
155 if (__predict_false(_valloc != nullptr))
    [all...]
__memcpy_chk.cpp 47 if (__predict_false(copy_amount > dest_len)) {
__memmove_chk.cpp 48 if (__predict_false(len > dest_len)) {
__memset_chk.cpp 47 if (__predict_false(n > dest_len)) {
__recvfrom_chk.cpp 38 if (__predict_false(len > buflen)) {
__stpcpy_chk.cpp 49 if (__predict_false(src_len > dest_len)) {
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
reallocarr.c 79 if (__predict_false((number|size) >= SQRT_SIZE_MAX &&
86 if (__predict_false(nptr == NULL)) {
  /system/core/include/log/
log.h 70 #ifndef __predict_false
71 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
104 ( (__predict_false(cond)) \
119 ( (__predict_false(cond)) \
133 ( (__predict_false(cond)) \
147 ( (__predict_false(cond)) \
161 ( (__predict_false(cond)) \
233 ( (__predict_false(cond)) \
249 ( (__predict_false(cond)) \
264 ( (__predict_false(cond))
    [all...]

Completed in 976 milliseconds

1 2 3 4