HomeSort by relevance Sort by last modified time
    Searched defs:__predict_false (Results 1 - 11 of 11) sorted by null

  /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__)) \
  /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
  /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
  /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
  /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...]
  /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
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 54 #ifndef __predict_false
55 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
59 ( (__predict_false(condition)) ? false : ({ \
    [all...]

Completed in 238 milliseconds