Searched defs:likely (Results 1 - 17 of 17) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
H A Dcrc32c_defs.h46 #define likely(x) __builtin_expect(!!(x), 1) macro
49 #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/e2fsprogs/e2fsck/
H A Dcrc32defs.h59 #define likely(x) __builtin_expect(!!(x), 1) macro
62 #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/icu/icu4c/source/common/
H A Duscript.c99 char likely[ULOC_FULLNAME_CAPACITY]; local
127 likely, UPRV_LENGTHOF(likely), &internalErrorCode);
129 length = getCodesFromLocale(likely, fillIn, capacity, err);
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);
/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/elfutils/lib/
H A Deu-config.h117 # define likely(e) debugpred__ (e,1) macro
120 #ifndef likely
122 # define likely(expr) __builtin_expect (!!(expr), 1) macro
/external/iproute2/include/
H A Dbpf_api.h35 #ifndef likely
36 # define likely(X) __builtin_expect(!!(X), 1) macro
/external/jemalloc/include/jemalloc/internal/
H A Dutil.h70 # define likely(x) __builtin_expect(!!(x), 1) macro
79 # define likely(x) !!(x) 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/strace/
H A Dvsprintf.c24 #define likely(expr) (expr) macro
457 * number of characters read (or likely the delta where it wants
/external/harfbuzz_ng/src/
H A Dhb-private.hh79 #define likely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 1)) macro
82 #define likely(expr) (expr) macro
324 return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
340 return likely (number) ? __builtin_ctz (number) : 0;
388 if (likely (len < allocated))
401 if (likely (!overflows)) {
514 if (likely (item))
555 if (likely (item))
884 * is unusable on some platforms and unused types are less likely
/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/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/sqlite/dist/orig/
H A Dsqlite3.c2281 ** is running then bad things will likely happen.
4744 ** SQLITE_TRANSIENT value means that the content will likely change in
5871 ** to read or write the estimatedRows field are undefined (but are likely
6818 ** [SQLITE_DBSTATUS options] is likely
9186 ** expression that is usually false. Macro likely() surrounds
9191 #define likely(X) (X) macro
11293 ** anybody smart enough to figure out the code is also likely smart
11360 ** windows and unix. I'm guessing that isn't likely to happen, but by
13337 #define OPFLAG_APPEND 0x08 /* This is likely to be an append */
18416 ** much more likely t
[all...]
/external/sqlite/dist/
H A Dsqlite3.c2281 ** is running then bad things will likely happen.
4744 ** SQLITE_TRANSIENT value means that the content will likely change in
5871 ** to read or write the estimatedRows field are undefined (but are likely
6818 ** [SQLITE_DBSTATUS options] is likely
9186 ** expression that is usually false. Macro likely() surrounds
9191 #define likely(X) (X) macro
11293 ** anybody smart enough to figure out the code is also likely smart
11360 ** windows and unix. I'm guessing that isn't likely to happen, but by
13337 #define OPFLAG_APPEND 0x08 /* This is likely to be an append */
18416 ** much more likely t
[all...]

Completed in 1114 milliseconds