Searched defs:unlikely (Results 1 - 13 of 13) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c_defs.h55 #define unlikely(x) __builtin_expect(!!(x), 0) macro
58 #define unlikely(x) (x) macro
/external/libnetfilter_conntrack/include/internal/
H A Dinternal.h73 #define unlikely(x) __builtin_expect((x),0) macro
/external/libunwind/include/
H A Dcompiler.h52 # define unlikely(x) __builtin_expect ((x), 0) macro
55 # define unlikely(x) (x) macro
69 # define unlikely(x) (x) macro
/external/elfutils/lib/
H A Deu-config.h116 # define unlikely(e) debugpred__ (e,0) macro
121 # define unlikely(expr) __builtin_expect (!!(expr), 0) macro
/external/iproute2/include/
H A Dbpf_api.h39 #ifndef unlikely
40 # define unlikely(X) __builtin_expect(!!(X), 0) macro
/external/jemalloc/include/jemalloc/internal/
H A Dutil.h70 # define unlikely(x) __builtin_expect(!!(x), 0) macro
73 # define unlikely(x) !!(x) macro
86 if (unlikely(!(c))) \
/external/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/
H A Damdgcn_glslc.c52 #define unlikely(x) __builtin_expect(!!(x), 0) macro
75 if (unlikely(fd < 0)) {
81 if (unlikely(gbm == NULL)) {
88 if (unlikely(egl_dpy == EGL_NO_DISPLAY)) {
93 if (unlikely(!eglInitialize(egl_dpy, NULL, NULL))) {
/external/mesa3d/src/util/
H A Dmacros.h51 # define unlikely(x) __builtin_expect(!!(x), 0) macro
54 # define unlikely(x) (x) macro
/external/harfbuzz_ng/src/
H A Dhb-private.hh80 #define unlikely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 0)) macro
83 #define unlikely(expr) (expr) macro
344 if (unlikely (!number)) return 0;
407 if (unlikely (!new_array))
422 if (unlikely (i >= len))
805 if (unlikely (!returned)) {
840 if (unlikely (returned)) {
1015 if (unlikely (!_hb_options.i))
/external/lz4/lib/
H A Dlz4.c121 #define unlikely(expr) expect((expr) != 0, 0) macro
529 if (unlikely(forwardIp > mflimit)) goto _last_literals;
549 while (((ip>anchor) & (match+refDelta > lowLimit)) && (unlikely(ip[-1]==match[refDelta-1]))) { ip--; match--; }
555 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)))
595 (unlikely(op + (1 + LASTLITERALS) + (matchCode>>8) > olimit)) )
773 if (unlikely(forwardIp > mflimit)) goto _last_literals;
784 while ((ip>anchor) && (match > lowLimit) && (unlikely(ip[-1]==match[-1]))) { ip--; match--; }
1124 if ((endOnInput) && (unlikely(outputSize==0))) return ((inputSize==1) && (*ip==0)) ? 0 : -1; /* Empty output buffer */
1125 if ((!endOnInput) && (unlikely(outputSize==0))) return (*ip==0?1:-1);
1141 if ((safeDecode) && unlikely((uptrva
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_context.h100 #define unlikely(expr) (__builtin_expect(expr, 0)) macro
103 #define unlikely(expr) (expr) macro
306 if (unlikely(INTEL_DEBUG & FILE_DEBUG_FLAG)) \
312 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) \
323 if (unlikely(cond)) { \
/external/sqlite/dist/orig/
H A Dsqlite3.c11374 ** The macro unlikely() is a hint that surrounds a boolean
11381 #define unlikely(X) (X) macro
14433 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
15218 #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11374 ** The macro unlikely() is a hint that surrounds a boolean
11381 #define unlikely(X) (X) macro
14433 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
15218 #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */
[all...]

Completed in 1177 milliseconds