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

  /external/valgrind/main/VEX/priv/
main_util.h 46 #define LIKELY(x) __builtin_expect(!!(x), 1)
54 ((void) (LIKELY(expr) ? 0 : \
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 36 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 36 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 36 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /device/lge/mako/camera/
QCameraHWI_Record_7x27A.cpp 31 #define LIKELY(exp) __builtin_expect(!!(exp), 1)
QCameraHWI_Record.cpp 30 #define LIKELY(exp) __builtin_expect(!!(exp), 1)
QualcommCameraHardware.cpp 52 #define LIKELY(exp) __builtin_expect(!!(exp), 1)
    [all...]
  /art/runtime/base/
macros.h 130 #define LIKELY(x) __builtin_expect((x), true)
  /external/chromium_org/third_party/WebKit/Source/wtf/
Compiler.h 164 /* LIKELY */
166 #ifndef LIKELY
168 #define LIKELY(x) __builtin_expect((x), 1)
170 #define LIKELY(x) (x)
  /dalvik/vm/
Common.h 55 #define LIKELY(exp) (__builtin_expect((exp) != 0, true))
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Record.cpp 31 #define LIKELY(exp) __builtin_expect(!!(exp), 1)
  /external/chromium_org/third_party/smhasher/src/
City.cpp 76 #if !defined(LIKELY)
78 #define LIKELY(x) (__builtin_expect(!!(x), 1))
80 #define LIKELY(x) (x)
316 } while (LIKELY(len >= 128));
435 if (LIKELY(len >= 240)) {
  /external/valgrind/main/include/
pub_tool_basics.h 301 # define LIKELY(x) __builtin_expect(!!(x), 1)
304 # define LIKELY(x) (x)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 127 # define LIKELY(x) (x)
143 # define LIKELY(x) __builtin_expect(!!(x), 1)

Completed in 1303 milliseconds