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

  /src/external/bsd/zstd/dist/contrib/pzstd/utils/
Likely.h 20 #undef UNLIKELY
24 #define UNLIKELY(x) (__builtin_expect((x), 0))
27 #define UNLIKELY(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
186 #define UNLIKELY(x) (__builtin_expect((x), 0))
189 #define UNLIKELY(x) (x)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_internal_defs.h 220 # define UNLIKELY(x) (x)
234 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
286 if (UNLIKELY(!(expr))) { \
298 if (UNLIKELY(!(v1 op v2))) \
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 224 # define UNLIKELY(x) (x)
238 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
305 if (UNLIKELY(!(expr))) { \
319 if (UNLIKELY(!(v1 op v2))) \
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 229 # define UNLIKELY(x) (x)
243 # define UNLIKELY(x) __builtin_expect(!!(x), 0)
302 if (UNLIKELY(!(expr))) { \
315 if (UNLIKELY(!(v1 op v2))) \
  /src/external/gpl3/gcc/dist/gcc/
system.h 765 #define UNLIKELY(x) (__builtin_expect ((x), 0))
824 ((void)(UNLIKELY (!(EXPR)) ? __builtin_unreachable (), 0 : 0))
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 388 if (UNLIKELY (__tmp_marker != 0)) \
536 #define UNLIKELY(cond) __GMP_UNLIKELY(cond)
2009 #define MPZ_REALLOC(z,n) (UNLIKELY ((n) > ALLOC(z)) \
2012 #define MPZ_NEWALLOC(z,n) (UNLIKELY ((n) > ALLOC(z)) \
2441 if (UNLIKELY (!(expr))) \
3087 if (UNLIKELY (_p >= (d1))) \
3137 if (UNLIKELY (_r >= (d))) \
3166 if (UNLIKELY (_r >= (d))) \
3197 if (UNLIKELY ((r1) >= (d1))) \
3861 a_inf if x is an infinity. Both are considered unlikely values, fo
    [all...]

Completed in 43 milliseconds