HomeSort by relevance Sort by last modified time
    Searched refs:__predict_false (Results 1 - 25 of 96) 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))) {
__read_chk.cpp 34 if (__predict_false(count > buf_size)) {
38 if (__predict_false(count > SSIZE_MAX)) {
__strchr_chk.cpp 35 if (__predict_false(s_len == 0)) {
__strlen_chk.cpp 61 if (__predict_false(ret >= s_len)) {
__umask_chk.cpp 46 if (__predict_false((mode & 0777) != mode)) {
__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)) {
__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)) {
__strcat_chk.cpp 54 if (__predict_false(dest_buf_size == 0)) {
__strcpy_chk.cpp 49 if (__predict_false(src_len > dest_len)) {
__strlcat_chk.cpp 49 if (__predict_false(supplied_size > dest_len_from_compiler)) {
__strlcpy_chk.cpp 49 if (__predict_false(supplied_size > dest_len_from_compiler)) {
__strncat_chk.cpp 58 if (__predict_false(dest_buf_size == 0)) {
__vsnprintf_chk.cpp 49 if (__predict_false(supplied_size > dest_len_from_compiler)) {
pthread_rwlock.cpp 135 if (__predict_false(__get_thread()->tid == rwlock->writer_thread_id)) {
171 if (__predict_false(tid == rwlock->writer_thread_id)) {
262 if (__predict_false(rwlock->pending_readers > 0 || rwlock->pending_writers > 0)) {
272 if (__predict_false(rwlock->pending_readers > 0 || rwlock->pending_writers > 0)) {
open.cpp 66 if (__predict_false((flags & O_CREAT) != 0)) {
  /system/core/toolbox/upstream-netbsd/lib/libc/string/
swab.c 65 if (__predict_false(len == 1)) {
  /bionic/libc/private/
bionic_futex.h 46 if (__predict_false(result == -1)) {
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
cdefs.h 289 * to evaluate to true, and __predict_false() if you expect the
294 * * Generally, __predict_false() error condition checks (unless
311 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
314 #define __predict_false(exp) (exp) macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
cdefs.h 289 * to evaluate to true, and __predict_false() if you expect the
294 * * Generally, __predict_false() error condition checks (unless
311 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
314 #define __predict_false(exp) (exp) macro
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
cdefs.h 289 * to evaluate to true, and __predict_false() if you expect the
294 * * Generally, __predict_false() error condition checks (unless
311 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
314 #define __predict_false(exp) (exp) macro

Completed in 260 milliseconds

1 2 3 4