Home
last modified time | relevance | path

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

/third_party/gn/src/base/
Dcompiler_specific.h44 #define UNLIKELY(x) __builtin_expect(!!(x), 0) macro
46 #define UNLIKELY(x) (x) macro
/third_party/cef/include/base/
Dcef_compiler_specific.h265 #define UNLIKELY(x) __builtin_expect(!!(x), 0) macro
267 #define UNLIKELY(x) (x) macro
/third_party/libffi/include/
Dffi_common.h147 #define UNLIKELY(x) __builtin_expect((x)!=0,0) macro
/third_party/node/src/
Dutil.h140 #define UNLIKELY(expr) __builtin_expect(!!(expr), 0) macro
144 #define UNLIKELY(expr) expr macro
/third_party/python/Objects/
Dobmalloc.c716 # define UNLIKELY(value) __builtin_expect((value), 0) macro
719 # define UNLIKELY(value) (value) macro