Home
last modified time | relevance | path

Searched defs:UNLIKELY (Results 1 – 12 of 12) sorted by relevance

/external/autotest/client/deps/glbench/src/
Dutils.h118 #define UNLIKELY(x) __builtin_expect(!!(x), 0) macro
120 #define UNLIKELY(x) (x) macro
/external/libchrome/base/
Dcompiler_specific.h207 #define UNLIKELY(x) __builtin_expect(!!(x), 0) macro
209 #define UNLIKELY(x) (x) macro
/external/pdfium/third_party/base/
Dcompiler_specific.h211 #define UNLIKELY(x) __builtin_expect(!!(x), 0) macro
213 #define UNLIKELY(x) (x) macro
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_diamond_search_sad_avx.c23 #define UNLIKELY(v) __builtin_expect(v, 0) macro
26 #define UNLIKELY(v) (v) macro
/external/libaom/libaom/aom_dsp/
Daom_dsp_common.h46 #define UNLIKELY(v) __builtin_expect(v, 0) macro
/external/python/cpython2/Modules/_ctypes/libffi/include/
Dffi_common.h126 #define UNLIKELY(x) __builtin_expect((x)!=0,0) macro
/external/libffi/include/
Dffi_common.h126 #define UNLIKELY(x) __builtin_expect((x)!=0,0) macro
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DUtil.java91 static boolean UNLIKELY(boolean b) { in UNLIKELY() method in Util
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_internal_defs.h140 # define UNLIKELY(x) (x) macro
153 # define UNLIKELY(x) __builtin_expect(!!(x), 0) macro
/external/python/cpython2/Objects/
Dobmalloc.c36 # define UNLIKELY(value) __builtin_expect((value), 0) macro
38 # define UNLIKELY(value) (value) macro
/external/python/cpython3/Objects/
Dobmalloc.c669 # define UNLIKELY(value) __builtin_expect((value), 0) macro
671 # define UNLIKELY(value) (value) macro
/external/libtextclassifier/utils/hash/
Dfarmhash.cc64 #define UNLIKELY(x) !LIKELY(!(x)) macro