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

1 2

  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
macros-expected.cc 18 #define LIKELY(x) x
35 if (LIKELY(derived_ptr)) {
macros-original.cc 18 #define LIKELY(x) x
35 if (LIKELY(derivedPtr)) {
  /system/core/base/include/android-base/
macros.h 118 // vendor code defines LIKELY and UNLIKELY this way, and includes
120 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /frameworks/native/libs/math/include/math/
half.h 24 #ifndef LIKELY
27 # define LIKELY( exp ) (__builtin_expect( !!(exp), true ))
30 # define LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
208 #undef LIKELY
TMatHelpers.h 33 #ifndef LIKELY
36 # define LIKELY( exp ) (__builtin_expect( !!(exp), true ))
39 # define LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
310 if (LIKELY(trace > 0)) {
639 #undef LIKELY
  /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 ))
  /external/valgrind/VEX/priv/
main_util.h 46 #define LIKELY(x) __builtin_expect(!!(x), 1)
60 ((void) (LIKELY(expr) ? 0 : \
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 38 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 37 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 41 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8909/liboverlay/
mdpWrapper.h 50 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
hwc_utils.h 41 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /hardware/qcom/display/msm8994/liboverlay/
mdpWrapper.h 50 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /device/google/contexthub/firmware/os/inc/
toolchain.h 37 /* IAR does not support LIKELY() and UNLIKELY() for optimization purposes. */
38 #define LIKELY(x) (x)
82 #define LIKELY(x) (__builtin_expect(x, 1))
  /external/valgrind/include/
pub_tool_basics.h 432 # define LIKELY(x) __builtin_expect(!!(x), 1)
435 # define LIKELY(x) (x)
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_diamond_search_sad_avx.c 22 #define LIKELY(v) __builtin_expect(v, 1)
25 #define LIKELY(v) (v)
158 if (LIKELY(_mm_test_all_zeros(v_inside_d, v_inside_d))) {
284 if (LIKELY(local_best_sad < best_sad)) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 139 # define LIKELY(x) (x)
152 # define LIKELY(x) __builtin_expect(!!(x), 1)
  /device/google/contexthub/sensorhal/
hubconnection.cpp 22 // TODO: remove the includes that introduce LIKELY and UNLIKELY (firmware/os/inc/toolchain.h)
23 #undef LIKELY
    [all...]
  /external/libtextclassifier/util/hash/
farmhash.cc 20 // Note that if you use -DFARMHASH_ASSUME_SSE42 you likely need -msse42
22 // you likely need -maes (or its equivalent for your compiler).
53 // FARMHASH PORTABILITY LAYER: LIKELY and UNLIKELY
55 #if !defined(LIKELY)
57 #define LIKELY(x) (x)
59 #define LIKELY(x) (__builtin_expect(!!(x), 1))
64 #define UNLIKELY(x) !LIKELY(!(x))
    [all...]
  /device/google/marlin/camera/QCamera2/stack/common/
cam_types.h 121 #define LIKELY(x) __builtin_expect((x), true)
    [all...]

Completed in 1062 milliseconds

1 2