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

1 2

  /device/google/contexthub/lefty/
Lefty.h 21 #undef UNLIKELY
  /frameworks/native/libs/math/include/math/
half.h 28 # define UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
31 # define UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
106 if (UNLIKELY(in.getE() == 0xFF)) { // inf or nan
133 if (UNLIKELY(in.getE() == 0x1F)) { // inf or nan
209 #undef UNLIKELY
TMatHelpers.h 37 # define UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
40 # define UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
640 #undef UNLIKELY
  /system/core/base/include/android-base/
macros.h 118 // vendor code defines LIKELY and UNLIKELY this way, and includes
121 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_fbupdate.h 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
hwc_utils.h 37 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
212 return (UNLIKELY(l && (l->flags & HWC_SKIP_LAYER)));
  /external/libchrome/base/
compiler_specific.h 214 #if !defined(UNLIKELY)
216 #define UNLIKELY(x) __builtin_expect(!!(x), 0)
218 #define UNLIKELY(x) (x)
220 #endif // !defined(UNLIKELY)
  /external/libffi/include/
ffi_common.h 126 #define UNLIKELY(x) __builtin_expect((x)!=0,0)
  /external/pdfium/third_party/base/
compiler_specific.h 209 #if !defined(UNLIKELY)
211 #define UNLIKELY(x) __builtin_expect(!!(x), 0)
213 #define UNLIKELY(x) (x)
215 #endif // !defined(UNLIKELY)
  /external/python/cpython2/Modules/_ctypes/libffi/include/
ffi_common.h 126 #define UNLIKELY(x) __builtin_expect((x)!=0,0)
  /external/python/cpython3/Modules/_ctypes/libffi/include/
ffi_common.h 126 #define UNLIKELY(x) __builtin_expect((x)!=0,0)
  /external/valgrind/VEX/priv/
main_util.h 48 # define UNLIKELY(x) (x)
52 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
  /frameworks/native/vulkan/libvulkan/
driver_gen.cpp 465 #define UNLIKELY(expr) __builtin_expect((expr), 0)
471 if (UNLIKELY(required && !data.driver.proc)) { \
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_fbupdate.h 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_fbupdate.h 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_fbupdate.h 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
  /hardware/qcom/display/msm8994/liboverlay/
mdpWrapper.h 51 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
186 if(UNLIKELY(Overlay::isDebugPipeLifecycle())) {
204 if(UNLIKELY(Overlay::isDebugPipeLifecycle())) {
  /device/google/contexthub/firmware/os/inc/
toolchain.h 37 /* IAR does not support LIKELY() and UNLIKELY() for optimization purposes. */
39 #define UNLIKELY(x) (x)
83 #define UNLIKELY(x) (__builtin_expect(x, 0))
  /external/valgrind/include/
pub_tool_basics.h 448 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
451 # define UNLIKELY(x) (x)
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_diamond_search_sad_avx.c 23 #define UNLIKELY(v) __builtin_expect(v, 0)
26 #define UNLIKELY(v) (v)
259 if (UNLIKELY(local_best_sad == 0xffff)) {
303 if (UNLIKELY(best_address == in_what)) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 140 # define UNLIKELY(x) (x)
153 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
206 if (UNLIKELY(!(expr))) { \
218 if (UNLIKELY(!(v1 op v2))) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 36 # define UNLIKELY(value) __builtin_expect((value), 0)
38 # define UNLIKELY(value) (value)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 11 # define UNLIKELY(value) __builtin_expect((value), 0)
13 # define UNLIKELY(value) (value)
    [all...]
  /external/libtextclassifier/util/hash/
farmhash.cc 53 // FARMHASH PORTABILITY LAYER: LIKELY and UNLIKELY
63 #undef UNLIKELY
64 #define UNLIKELY(x) !LIKELY(!(x))
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 36 # define UNLIKELY(value) __builtin_expect((value), 0)
38 # define UNLIKELY(value) (value)
    [all...]

Completed in 875 milliseconds

1 2