HomeSort by: relevance | last modified time | path
    Searched defs:LIKELY (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/zstd/dist/contrib/pzstd/utils/
Likely.h 12 * the if condition is likely to be true or false.
19 #undef LIKELY
23 #define LIKELY(x) (__builtin_expect((x), 1))
26 #define LIKELY(x) (x)
  /src/external/bsd/zstd/dist/lib/common/
compiler.h 179 /* Tell the compiler that a branch is likely or unlikely.
181 * If you can remove a LIKELY/UNLIKELY annotation without speed changes in gcc
185 #define LIKELY(x) (__builtin_expect((x), 1))
188 #define LIKELY(x) (x)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_internal_defs.h 219 # define LIKELY(x) (x)
233 # define LIKELY(x) __builtin_expect(!!(x), 1)
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 223 # define LIKELY(x) (x)
237 # define LIKELY(x) __builtin_expect(!!(x), 1)
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 228 # define LIKELY(x) (x)
242 # define LIKELY(x) __builtin_expect(!!(x), 1)
  /src/external/gpl3/gcc/dist/gcc/
system.h 758 the most likely value of A is B. This feature was added at some point
764 #define LIKELY(x) (__builtin_expect ((x), 1))
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 384 (LIKELY ((n) <= 0x7f00) ? TMP_SALLOC(n) : TMP_BALLOC(n))
535 #define LIKELY(cond) __GMP_LIKELY(cond)
3361 /* small a is reasonably likely */ \
4713 ((LIKELY (__gmpn_cpuvec_initialized) ? 0 : (__gmpn_cpuvec_init (), 0)), \

Completed in 43 milliseconds