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

1 2

  /system/core/liblog/include/log/
log_radio.h 41 #ifndef __predict_false
42 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
69 ((__predict_false(cond)) \
87 ((__predict_false(cond)) \
104 ((__predict_false(cond)) \
121 ((__predict_false(cond)) \
138 ((__predict_false(cond)) \
log_system.h 39 #ifndef __predict_false
40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
67 ((__predict_false(cond)) \
85 ((__predict_false(cond)) \
102 ((__predict_false(cond)) \
119 ((__predict_false(cond)) \
136 ((__predict_false(cond)) \
log_main.h 56 #ifndef __predict_false
57 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
113 ((__predict_false(cond)) \
194 ((__predict_false(cond)) ? ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
208 ((__predict_false(cond)) ? ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
221 ((__predict_false(cond)) ? ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \
234 ((__predict_false(cond)) ? ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \
247 ((__predict_false(cond)) ? ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
  /bionic/libc/private/
bionic_fortify.h 51 if (__predict_false(fd < 0)) {
54 if (__predict_false(fd >= FD_SETSIZE)) {
57 if (__predict_false(set_size < sizeof(fd_set))) {
64 if (__predict_false(pollfd_array_length < fd_count)) {
71 if (__predict_false(value > SSIZE_MAX)) {
78 if (__predict_false(claim > actual)) {
bionic_futex.h 46 if (__predict_false(result == -1)) {
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
reallocarr.c 79 if (__predict_false((number|size) >= SQRT_SIZE_MAX &&
86 if (__predict_false(nptr == NULL)) {
  /bionic/linker/
linker_memory.cpp 65 if (__predict_false(fallback_tid) && __predict_false(gettid() == fallback_tid)) {
  /system/core/toolbox/upstream-netbsd/lib/libc/string/
swab.c 65 if (__predict_false(len == 1)) {
  /bionic/libc/bionic/
malloc_common.cpp 89 if (__predict_false(_calloc != nullptr)) {
97 if (__predict_false(_free != nullptr)) {
106 if (__predict_false(_mallinfo != nullptr)) {
114 if (__predict_false(_mallopt != nullptr)) {
122 if (__predict_false(_malloc != nullptr)) {
130 if (__predict_false(_malloc_usable_size != nullptr)) {
138 if (__predict_false(_memalign != nullptr)) {
146 if (__predict_false(_posix_memalign != nullptr)) {
154 if (__predict_false(_aligned_alloc != nullptr)) {
162 if (__predict_false(_realloc != nullptr))
    [all...]
fortify.cpp 106 if (__predict_false(__size_mul_overflow(size, count, &total))) {
116 if (__predict_false(__size_mul_overflow(size, count, &total))) {
264 if (__predict_false(s_copy_len > src_len)) {
280 if (__predict_false(s_len == 0)) {
315 if (__predict_false(ret >= s_len)) {
335 if (__predict_false(dst_buf_size == 0)) {
375 if (__predict_false(s_copy_len > src_len)) {
398 if (__predict_false((mode & 0777) != mode)) {
462 if (__predict_false(dst_buf_size == 0)) {
pthread_key.cpp 140 if (__predict_false(!KeyInValidRange(key))) {
156 if (__predict_false(!KeyInValidRange(key))) {
175 if (__predict_false(!KeyInValidRange(key))) {
pthread_mutex.cpp 760 if (__predict_false(!atomic_compare_exchange_weak_explicit(&mutex->state,
826 if (__predict_false(IsMutexDestroyed(old_state))) {
    [all...]
pthread_rwlock.cpp 231 if (__predict_false(attr != NULL)) {
278 if (__predict_false(!__state_owned_by_readers(new_state))) { // Happens when reader count overflows.
  /system/core/lmkd/
liblmkd_utils.c 68 if (__predict_false(written >= (int)sizeof(buf))) {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
EfiCdefs.h 286 * to evaluate to true, and __predict_false() if you expect the
291 * * Generally, __predict_false() error condition checks (unless
308 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
311 #define __predict_false(exp) (exp) macro
param.h 315 (__predict_false((ms) >= 0x20000) ? \
  /system/core/logd/
LogBuffer.cpp 39 #ifndef __predict_false
40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
396 if (__predict_false(it == mLogElements.begin()) ||
398 __predict_false((((*it)->getRealTime().tv_sec - too_far_back) >
433 if (__predict_false(it == mLogElements.begin())) {
517 if (__predict_false(it == mLogElements.end())) { // impossible
727 if (__predict_false(caller_uid != AID_ROOT)) { // unlikely
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanhl.c 132 if (__predict_false(ix<BIAS-(LDBL_MANT_DIG+1)/2)) { /* |x|<TINY */
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
cdefs.h 352 * to evaluate to true, and __predict_false() if you expect the
357 * * Generally, __predict_false() error condition checks (unless
374 #define __predict_false(exp) __builtin_expect((exp), 0) macro
377 #define __predict_false(exp) (exp) macro
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 48 def __predict_false(exp): return __builtin_expect((exp), 0) function
52 def __predict_false(exp): return (exp) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 48 def __predict_false(exp): return __builtin_expect((exp), 0) function
52 def __predict_false(exp): return (exp) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 48 def __predict_false(exp): return __builtin_expect((exp), 0) function
52 def __predict_false(exp): return (exp) function
  /bionic/libc/include/sys/
cdefs.h 133 * to evaluate to true, and __predict_false() if you expect the
138 * * Generally, __predict_false() error condition checks (unless
154 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
  /frameworks/native/libs/vr/libdvr/tests/
dvr_buffer_queue-test.cpp 21 ((__predict_false(cond)) ? ((void)ALOGD(__VA_ARGS__)) : (void)0)
  /bionic/libc/stdio/
stdio.cpp 132 if (__predict_false(fp->_lb._base != nullptr)) {

Completed in 452 milliseconds

1 2