HomeSort by relevance Sort by last modified time
    Searched defs:unlikely (Results 1 - 23 of 23) sorted by null

  /external/e2fsprogs/lib/ext2fs/
crc32c_defs.h 47 #define unlikely(x) __builtin_expect(!!(x), 0) macro
50 #define unlikely(x) (x) macro
  /external/mesa3d/src/mapi/mapi/
u_compiler.h 44 # define unlikely(x) __builtin_expect(!!(x), 0) macro
47 # define unlikely(x) (x) macro
  /development/tools/yuv420sp2rgb/
debug.h 7 #define unlikely(expr) __builtin_expect (expr, 0) macro
13 if (unlikely(cond)) { \
22 if (unlikely(!(x))) { \
33 if (unlikely(cond)) { \
83 if(unlikely(verbose_flag)) \
  /external/e2fsprogs/e2fsck/
crc32defs.h 60 #define unlikely(x) __builtin_expect(!!(x), 0) macro
63 #define unlikely(x) (x) macro
  /external/libunwind/include/
compiler.h 52 # 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/
p_compiler.h 273 * 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/drm_gralloc/
gralloc_drm.cpp 38 #define unlikely(x) __builtin_expect(!!(x), 0) macro
47 if (unlikely(!gralloc_drm_pid))
164 if (unlikely(handle->data_owner != gralloc_drm_pid)) {
  /external/elfutils/lib/
eu-config.h 116 # define unlikely(e) debugpred__ (e,0) macro
121 # define unlikely(expr) __builtin_expect (!!(expr), 0) macro
  /external/iproute2/include/
bpf_api.h 39 #ifndef unlikely
40 # define unlikely(X) __builtin_expect(!!(X), 0) macro
  /external/jemalloc/include/jemalloc/internal/
util.h 71 # define unlikely(x) __builtin_expect(!!(x), 0) macro
80 # define unlikely(x) !!(x) macro
88 if (unlikely(!(c))) \
  /prebuilts/go/darwin-x86/test/bench/shootout/
fasta.c 52 #define unlikely(x) __builtin_expect((x), 0) macro
161 while (unlikely(u->cprob_lookup < r)) {
  /prebuilts/go/linux-x86/test/bench/shootout/
fasta.c 52 #define unlikely(x) __builtin_expect((x), 0) macro
161 while (unlikely(u->cprob_lookup < r)) {
  /system/extras/verity/fec/
image.h 36 #define unlikely(x) __builtin_expect(!!(x), 0) macro
99 if (unlikely(offset >= ctx->inp_size)) {
111 if (unlikely(offset >= ctx->inp_size)) {
  /external/mesa3d/src/mesa/main/
compiler.h 184 # define unlikely(x) __builtin_expect(!!(x), 0) macro
187 # define unlikely(x) (x) macro
  /system/extras/libfec/
fec_private.h 135 #ifndef unlikely
136 #define unlikely(x) __builtin_expect(!!(x), 0) macro
168 if (unlikely(!(p))) { \
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/
perf.h 133 #define unlikely(x) __builtin_expect(! ! (x), 0) macro
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/
perf.h 146 #define unlikely(x) __builtin_expect(!!(x), 0) macro
168 if (unlikely(test_attr__enabled))
  /external/strace/
vsprintf.c 25 #define unlikely(expr) (expr) macro
566 if (unlikely(spec->qualifier == *fmt)) {
  /external/harfbuzz_ng/src/
hb-private.hh 80 #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/
lz4.c 135 #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)))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_context.h 103 #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/
sqlite3.c 9190 #define unlikely macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 9190 #define unlikely macro
    [all...]

Completed in 1194 milliseconds