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

/external/mesa3d/src/mapi/mapi/
H A Du_compiler.h44 # define unlikely(x) __builtin_expect(!!(x), 0) macro
47 # define unlikely(x) (x) macro
/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c_defs.h55 #define unlikely(x) __builtin_expect(!!(x), 0) macro
58 #define unlikely(x) (x) macro
/external/ltp/tools/top-LTP/proc/
H A Dprocps.h27 // tell gcc what to expect: if (unlikely(err)) die(err);
29 #define unlikely(x) __builtin_expect(!!(x),0) macro
34 #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/mesa3d/src/gallium/include/pipe/
H A Dp_compiler.h273 * is either likely to be true, or unlikely to be true.
290 * the other path, or viceversa with "unlikely".
293 * if(unlikely(do_we_need_a_software_fallback()))
307 # define unlikely(x) __builtin_expect(!!(x), 0) macro
310 # 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/drm_gralloc/
H A Dgralloc_drm.cpp38 #define unlikely(x) __builtin_expect(!!(x), 0) macro
47 if (unlikely(!gralloc_drm_pid))
164 if (unlikely(handle->data_owner != gralloc_drm_pid)) {
/external/mesa3d/src/mesa/main/
H A Dcompiler.h184 # define unlikely(x) __builtin_expect(!!(x), 0) macro
187 # 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/intel/
H A Dintel_context.h103 #define unlikely(expr) (__builtin_expect(expr, 0)) macro
106 #define unlikely(expr) (expr) macro
461 if (unlikely(INTEL_DEBUG & FILE_DEBUG_FLAG)) \
466 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) \
471 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) \
/external/sqlite/dist/orig/
H A Dsqlite3.c11318 ** The macro unlikely() is a hint that surrounds a boolean
11325 #define unlikely(X) (X) macro
14365 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
15150 #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11318 ** The macro unlikely() is a hint that surrounds a boolean
11325 #define unlikely(X) (X) macro
14365 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
15150 #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */
[all...]

Completed in 930 milliseconds