Searched defs:likely (Results 1 - 16 of 16) sorted by path

/external/e2fsprogs/e2fsck/
H A Dcrc32defs.h59 #define likely(x) __builtin_expect(!!(x), 1) macro
62 #define likely(x) (x) macro
/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c_defs.h46 #define likely(x) __builtin_expect(!!(x), 1) macro
49 #define likely(x) (x) macro
/external/elfutils/src/lib/
H A Deu-config.h116 # define likely(e) debugpred__ (e,1) macro
119 #ifndef likely
121 # define likely(expr) __builtin_expect (!!(expr), 1) macro
/external/harfbuzz_ng/src/
H A Dhb-private.hh62 #define likely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 1)) macro
65 #define likely(expr) (expr) macro
282 return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
298 return likely (number) ? __builtin_ctz (number) : 0;
346 if (likely (len < allocated))
359 if (likely (!overflows)) {
472 if (likely (item))
513 if (likely (item))
823 * is unsable on some platforms and unused types are less likely
/external/icu/icu4c/source/common/
H A Dloclikely.cpp16 * Code for likely and minimized locale subtags, separated out from other .cpp files
17 * that then do not depend on resource bundle code and likely-subtags data.
1292 // Fastpath: We know the likely scripts and their writing direction
1309 // Otherwise, find the likely script.
1311 char likely[ULOC_FULLNAME_CAPACITY]; local
1312 (void)uloc_addLikelySubtags(locale, likely, UPRV_LENGTHOF(likely), &errorCode);
1316 scriptLength = uloc_getScript(likely, script, UPRV_LENGTHOF(script), &errorCode);
H A Duscript.c99 char likely[ULOC_FULLNAME_CAPACITY]; local
127 likely, UPRV_LENGTHOF(likely), &internalErrorCode);
129 length = getCodesFromLocale(likely, fillIn, capacity, err);
/external/jemalloc/include/jemalloc/internal/
H A Dutil.h31 # define likely(x) __builtin_expect(!!(x), 1) macro
34 # define likely(x) !!(x) macro
/external/libunwind/include/
H A Dcompiler.h51 # define likely(x) __builtin_expect ((x), 1) macro
54 # define likely(x) (x) macro
68 # define likely(x) (x) macro
/external/lz4/lib/
H A Dlz4.c134 #define likely(expr) expect((expr) != 0, 1) macro
398 while (likely(pIn<pInLimit-(STEPSIZE-1)))
998 while (likely((endOnInput)?ip<iend-RUN_MASK:1) && (s==255));
/external/mesa3d/src/gallium/include/pipe/
H A Dp_compiler.h273 * is either likely to be true, or unlikely to be true.
283 * If these macros are used, the CPU is more likely to correctly predict
287 * In light of this, it is also a good idea to mark as "likely" a path
288 * which is not necessarily always more likely, but that will benefit much
304 #ifndef likely
306 # define likely(x) __builtin_expect(!!(x), 1) macro
309 # define likely(x) (x) macro
/external/mesa3d/src/mapi/mapi/
H A Du_compiler.h41 #ifndef likely
43 # define likely(x) __builtin_expect(!!(x), 1) macro
46 # define likely(x) (x) macro
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_context.h100 #ifndef likely
102 #define likely(expr) (__builtin_expect(expr, 1)) macro
105 #define likely(expr) (expr) macro
/external/mesa3d/src/mesa/main/
H A Dcompiler.h181 #ifndef likely
183 # define likely(x) __builtin_expect(!!(x), 1) macro
186 # define likely(x) (x) macro
/external/sqlite/dist/orig/
H A Dsqlite3.c2261 ** is running then bad things will likely happen.
4693 ** SQLITE_TRANSIENT value means that the content will likely change in
5788 ** to read or write the estimatedRows field are undefined (but are likely
6719 ** [SQLITE_DBSTATUS options] is likely
8547 ** expression that is usually false. Macro likely() surrounds
8552 #define likely(X) (X) macro
10626 ** anybody smart enough to figure out the code is also likely smart
10693 ** windows and unix. I'm guessing that isn't likely to happen, but by
12630 #define OPFLAG_APPEND 0x08 /* This is likely to be an append */
17648 ** much more likely t
[all...]
/external/sqlite/dist/
H A Dsqlite3.c2261 ** is running then bad things will likely happen.
4693 ** SQLITE_TRANSIENT value means that the content will likely change in
5788 ** to read or write the estimatedRows field are undefined (but are likely
6719 ** [SQLITE_DBSTATUS options] is likely
8547 ** expression that is usually false. Macro likely() surrounds
8552 #define likely(X) (X) macro
10626 ** anybody smart enough to figure out the code is also likely smart
10693 ** windows and unix. I'm guessing that isn't likely to happen, but by
12630 #define OPFLAG_APPEND 0x08 /* This is likely to be an append */
17648 ** much more likely t
[all...]
/external/strace/
H A Dvsprintf.c24 #define likely(expr) (expr) macro
457 * number of characters read (or likely the delta where it wants

Completed in 925 milliseconds