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

  /src/external/bsd/nsd/dist/simdzone/src/
attributes.h 24 # define unlikely(params) (params) macro
69 # define unlikely(params) __builtin_expect(!!(params), 0) macro
72 # define unlikely(params) (params) macro
  /src/sys/external/bsd/common/include/linux/
compiler.h 58 #define unlikely(X) __predict_false(X) macro
  /src/sys/ufs/chfs/
debug.h 44 #define unlikely(x) __builtin_expect ((x), 0) macro
55 if (unlikely(!(expr))) { \
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
util.h 33 # define unlikely(x) __builtin_expect(!!(x), 0) macro
36 # define unlikely(x) !!(x) macro
  /src/external/bsd/jemalloc/include/jemalloc/internal/
util.h 33 # define unlikely(x) __builtin_expect(!!(x), 0) macro
36 # define unlikely(x) !!(x) macro
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
util.h 33 # define unlikely(x) __builtin_expect(!!(x), 0) macro
36 # define unlikely(x) !!(x) macro
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
util.h 33 # define unlikely(x) __builtin_expect(!!(x), 0) macro
36 # define unlikely(x) !!(x) macro
  /src/external/gpl3/gcc/dist/libgcc/config/rs6000/
ibm-ldouble.c 56 #define unlikely(x) __builtin_expect ((x), 0) macro
58 #define nonfinite(a) unlikely (! isless (fabs (a), inf ()))
183 if (unlikely (t == 0) /* Preserve -0. */
215 if (unlikely (t == 0) /* Preserve -0. */
  /src/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
ibm-ldouble.c 56 #define unlikely(x) __builtin_expect ((x), 0) macro
58 #define nonfinite(a) unlikely (! isless (fabs (a), inf ()))
183 if (unlikely (t == 0) /* Preserve -0. */
215 if (unlikely (t == 0) /* Preserve -0. */
  /src/external/mpl/bind/dist/lib/isc/
picohttpparser.c 45 #define unlikely(x) __builtin_expect(!!(x), 0) macro
48 #define unlikely(x) (x) macro
88 } else if (unlikely(!IS_PRINTABLE_ASCII(*buf))) { \
128 if (unlikely(r != 16)) {
168 if (unlikely(!IS_PRINTABLE_ASCII(*buf))) { \
186 unlikely(*buf == '\177'))
195 if (unlikely(!IS_PRINTABLE_ASCII(*buf))) {
198 unlikely(*buf == '\177'))
  /src/external/public-domain/xz/dist/src/liblzma/common/
common.h 121 # define unlikely(expr) __builtin_expect(expr, false) macro
124 # define unlikely(expr) (expr) macro
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-sprintf.cc 110 /* The minimum, maximum, likely, and unlikely maximum number of bytes
121 cases MAX is the same as the worst case UNLIKELY result. */
127 /* In rare cases (e.g., for multibyte characters) UNLIKELY gives
129 UNLIKELY == MAX. UNLIKELY is used to control the return value
131 unsigned HOST_WIDE_INT unlikely; member in struct:__anon13745::result_range
397 range.unlikely = min;
411 range.unlikely = max;
521 /* Finally adjust the unlikely counter to be at least as large as
523 if (range.unlikely < range.max
    [all...]
profile-count.h 126 - unlikely (1/5 probability)
193 static profile_probability unlikely () function
213 return always () - unlikely ();
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-sprintf.cc 110 /* The minimum, maximum, likely, and unlikely maximum number of bytes
121 cases MAX is the same as the worst case UNLIKELY result. */
127 /* In rare cases (e.g., for multibyte characters) UNLIKELY gives
129 UNLIKELY == MAX. UNLIKELY is used to control the return value
131 unsigned HOST_WIDE_INT unlikely; member in struct:__anon16173::result_range
397 range.unlikely = min;
411 range.unlikely = max;
521 /* Finally adjust the unlikely counter to be at least as large as
523 if (range.unlikely < range.max
    [all...]
profile-count.h 126 - unlikely (1/5 probability)
193 static profile_probability unlikely () function
213 return always () - unlikely ();
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
lz4.c 257 #if defined(unlikely)
258 #undef unlikely macro
262 #define unlikely(expr) expect((expr) != 0, 0) macro
513 if unlikely(forwardIp > mflimit) {
525 unlikely(ip[-1] == ref[-1])) {
535 if unlikely(op + length + (2 + 1 + LASTLITERALS) +
586 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend)
728 if unlikely(op + length + (2 + 1 + LASTLITERALS) +
779 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend)
967 if unlikely(op - ref < STEPSIZE)
    [all...]
  /src/sys/external/bsd/ena-com/
ena_plat.h 113 #define unlikely(x) __predict_false(x) macro
120 #define IS_ERR_VALUE(x) unlikely((x) <= (unsigned long)MAX_ERRNO)
124 if (unlikely(!(cond))) { \
133 if (unlikely((cond))) { \
  /src/external/apache2/mDNSResponder/dist/mDNSShared/dns_objects/utilities/
dns_common.h 53 #ifndef unlikely
54 #define unlikely(EXPRESSSION) __builtin_expect(!!(EXPRESSSION), 0) macro
  /src/external/gpl3/gcc/dist/libbacktrace/
elf.c 66 #define unlikely(x) (x) macro
68 #define unlikely(x) __builtin_expect(!!(x), 0) macro
1132 if (unlikely (pinend - pin < 4))
1184 if (unlikely (pin <= pinend))
1214 if (unlikely (pin < pinend))
1242 if (unlikely (stream_start == 0))
1374 if (unlikely (codes[i] >= 16))
1411 if (unlikely (jcnt > (1U << j)))
1431 if (unlikely ((val & ~ZLIB_HUFFMAN_VALUE_MASK) != 0))
1447 if (unlikely (table[ind] != 0)
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/
libgfortran.h 128 unlikely to be true. Avoid using them when a condition is only slightly
129 more likely/less unlikely than average to avoid the performance penalties of
133 heuristic will mark this branch as much less likely as unlikely() would
137 #define unlikely(x) __builtin_expect(!!(x), 0) macro
486 #define GFC_DTYPE_IS_UNSET(a) (unlikely((a)->dtype.elem_len == 0))
  /src/external/gpl3/gcc.old/dist/libbacktrace/
elf.c 61 #define unlikely(x) (x) macro
63 #define unlikely(x) __builtin_expect(!!(x), 0) macro
1125 if (unlikely (pinend - pin < 4))
1255 if (unlikely (codes[i] >= 16))
1292 if (unlikely (jcnt > (1U << j)))
1312 if (unlikely ((val & ~HUFFMAN_VALUE_MASK) != 0))
1328 if (unlikely (table[ind] != 0))
1416 if (unlikely (jcnt != 0))
1468 if (unlikely ((next_secondary & HUFFMAN_VALUE_MASK)
1486 if (unlikely ((tprimary & (1U << HUFFMAN_SECONDARY_SHIFT)
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/
libgfortran.h 128 unlikely to be true. Avoid using them when a condition is only slightly
129 more likely/less unlikely than average to avoid the performance penalties of
133 heuristic will mark this branch as much less likely as unlikely() would
137 #define unlikely(x) __builtin_expect(!!(x), 0) macro
482 #define GFC_DTYPE_IS_UNSET(a) (unlikely((a)->dtype.elem_len == 0))
  /src/external/gpl3/gdb/dist/libbacktrace/
elf.c 66 #define unlikely(x) (x) macro
68 #define unlikely(x) __builtin_expect(!!(x), 0) macro
1132 if (unlikely (pinend - pin < 4))
1184 if (unlikely (pin <= pinend))
1214 if (unlikely (pin < pinend))
1242 if (unlikely (stream_start == 0))
1374 if (unlikely (codes[i] >= 16))
1411 if (unlikely (jcnt > (1U << j)))
1431 if (unlikely ((val & ~ZLIB_HUFFMAN_VALUE_MASK) != 0))
1447 if (unlikely (table[ind] != 0)
    [all...]
  /src/external/gpl3/gdb.old/dist/libbacktrace/
elf.c 66 #define unlikely(x) (x) macro
68 #define unlikely(x) __builtin_expect(!!(x), 0) macro
1132 if (unlikely (pinend - pin < 4))
1184 if (unlikely (pin <= pinend))
1214 if (unlikely (pin < pinend))
1242 if (unlikely (stream_start == 0))
1374 if (unlikely (codes[i] >= 16))
1411 if (unlikely (jcnt > (1U << j)))
1431 if (unlikely ((val & ~ZLIB_HUFFMAN_VALUE_MASK) != 0))
1447 if (unlikely (table[ind] != 0)
    [all...]
  /src/external/public-domain/sqlite/dist/
sqlite3.c 5868 ** The SQLITE_INNOCUOUS flag means that the function is unlikely
14334 ** The macro unlikely() is a hint that surrounds a boolean
14341 #define unlikely(X) (X) macro
17950 #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */
18996 #define EP_Unlikely 0x080000 /* unlikely() or likelihood() function */
    [all...]

Completed in 66 milliseconds