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

/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c_defs.h47 #define unlikely(x) __builtin_expect(!!(x), 0) macro
50 #define unlikely(x) (x) macro
/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/e2fsck/
H A Dcrc32defs.h60 #define unlikely(x) __builtin_expect(!!(x), 0) macro
63 #define unlikely(x) (x) 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.h71 # define unlikely(x) __builtin_expect(!!(x), 0) macro
80 # define unlikely(x) !!(x) macro
88 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/strace/
H A Dvsprintf.c25 #define unlikely(expr) (expr) macro
566 if (unlikely(spec->qualifier == *fmt)) {
/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
343 if (unlikely (!number)) return 0;
406 if (unlikely (!new_array))
421 if (unlikely (i >= len))
801 if (unlikely (!returned)) {
836 if (unlikely (returned)) {
1011 if (unlikely (!_hb_options.i))
/external/lz4/lib/
H A Dlz4.c135 #define unlikely(expr) expect((expr) != 0, 0) macro
571 if (unlikely(forwardIp > mflimit)) goto _last_literals;
596 while ((ip>anchor) && (match+refDelta > lowLimit) && (unlikely(ip[-1]==match[refDelta-1]))) { ip--; match--; }
602 if ((outputLimited) && (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)))
647 if ((outputLimited) && (unlikely(op + (1 + LASTLITERALS) + (matchLength>>8) > olimit)))
977 if ((endOnInput) && (unlikely(outputSize==0))) return ((inputSize==1) && (*ip==0)) ? 0 : -1; /* Empty output buffer */
978 if ((!endOnInput) && (unlikely(outputSize==0))) return (*ip==0?1:-1);
999 if ((safeDecode) && unlikely((size_t)(op+length)<(size_t)(op))) goto _output_error; /* overflow detection */
1000 if ((safeDecode) && unlikely((size_t)(ip+length)<(size_t)(ip))) goto _output_error; /* overflow detection */
1028 if ((checkOffset) && (unlikely(matc
[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.c9185 ** The macro unlikely() is a hint that surrounds a boolean
9192 #define unlikely(X) (X) macro
11943 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
12687 #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */
[all...]
/external/sqlite/dist/
H A Dsqlite3.c9185 ** The macro unlikely() is a hint that surrounds a boolean
9192 #define unlikely(X) (X) macro
11943 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
12687 #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */
[all...]

Completed in 1251 milliseconds