Searched refs:__predict_false (Results 1 – 13 of 13) sorted by relevance
49 if (__predict_false(fd < 0)) { in __check_fd_set()52 if (__predict_false(fd >= FD_SETSIZE)) { in __check_fd_set()55 if (__predict_false(set_size < sizeof(fd_set))) { in __check_fd_set()62 if (__predict_false(pollfd_array_length < fd_count)) { in __check_pollfd_array()69 if (__predict_false(value > SSIZE_MAX)) { in __check_count()76 if (__predict_false(claim > actual)) { in __check_buffer_access()
49 if (__predict_false(result == -1)) { in __futex()
82 if (__predict_false(_calloc != nullptr)) { in calloc()90 if (__predict_false(_free != nullptr)) { in free()99 if (__predict_false(_mallinfo != nullptr)) { in mallinfo()107 if (__predict_false(_mallopt != nullptr)) { in mallopt()115 if (__predict_false(_malloc != nullptr)) { in malloc()123 if (__predict_false(_malloc_usable_size != nullptr)) { in malloc_usable_size()131 if (__predict_false(_memalign != nullptr)) { in memalign()139 if (__predict_false(_posix_memalign != nullptr)) { in posix_memalign()147 if (__predict_false(_realloc != nullptr)) { in realloc()156 if (__predict_false(_pvalloc != nullptr)) { in pvalloc()[all …]
44 if (__predict_false(dst_buf_size == 0)) { in __strcat_chk()
137 if (__predict_false(!KeyInValidRange(key))) { in pthread_key_delete()152 if (__predict_false(!KeyInValidRange(key))) { in pthread_getspecific()170 if (__predict_false(!KeyInValidRange(key))) { in pthread_setspecific()
111 if (__predict_false(__size_mul_overflow(size, count, &total))) { in __fread_chk()122 if (__predict_false(__size_mul_overflow(size, count, &total))) { in __fwrite_chk()272 if (__predict_false(s_copy_len > src_len)) { in __stpncpy_chk2()288 if (__predict_false(s_len == 0)) { in __strchr_chk()323 if (__predict_false(ret >= s_len)) { in __strlen_chk()344 if (__predict_false(dst_buf_size == 0)) { in __strncat_chk()386 if (__predict_false(s_copy_len > src_len)) { in __strncpy_chk2()409 if (__predict_false((mode & 0777) != mode)) { in __umask_chk()
66 if (__predict_false((flags & O_CREAT) != 0)) { in __open_2()
231 if (__predict_false(attr != NULL)) { in pthread_rwlock_init()278 …if (__predict_false(!__state_owned_by_readers(new_state))) { // Happens when reader count overflow… in __pthread_rwlock_tryrdlock()
481 if (__predict_false(!atomic_compare_exchange_weak_explicit(&mutex->state, in __pthread_mutex_lock_with_timeout()
64 if (__predict_false(fallback_tid) && __predict_false(gettid() == fallback_tid)) { in get_allocator()
79 if (__predict_false((number|size) >= SQRT_SIZE_MAX && in __weak_alias()86 if (__predict_false(nptr == NULL)) { in __weak_alias()
132 if (__predict_false(ix<BIAS-(LDBL_MANT_DIG+1)/2)) { /* |x|<TINY */ in tanhl()
179 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro