Home
last modified time | relevance | path

Searched defs:UNLIKELY (Results 1 – 4 of 4) 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/node/src/
Dutil.h142 #define UNLIKELY(expr) __builtin_expect(!!(expr), 0) macro
146 #define UNLIKELY(expr) expr macro
/third_party/python/Objects/
Dobmalloc.c748 # define UNLIKELY(value) __builtin_expect((value), 0) macro
751 # define UNLIKELY(value) (value) macro
/third_party/skia/src/core/
DSkTraceEventCommon.h203 #define UNLIKELY(exp) (__builtin_expect((exp) != 0, false)) macro