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

/external/oprofile/module/
H A Dcompat.h49 #ifndef likely
51 #define likely(a) __builtin_expect((a), 1) macro
53 #define likely(a) (a) macro
/external/e2fsprogs/e2fsck/
H A Dcrc32defs.h59 #define likely(x) __builtin_expect(!!(x), 1) macro
62 #define likely(x) (x) macro
/external/kernel-headers/original/linux/
H A Dcompiler.h62 #define likely(x) __builtin_expect(!!(x), 1) macro
/external/elfutils/lib/
H A Deu-config.h151 # define likely(e) debugpred__ (e,1) macro
154 #ifndef likely
156 # define likely(expr) __builtin_expect (!!(expr), 1) macro
/external/qemu/
H A Dosdep.h20 #ifndef likely
25 #define likely(x) __builtin_expect(!!(x), 1) macro
/external/harfbuzz_ng/src/
H A Dhb-private.hh151 #define likely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 1)) macro
154 #define likely(expr) (expr) macro
231 return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
247 return likely (number) ? __builtin_ctz (number) : 0;
295 if (likely (len < allocated))
308 if (likely (!overflows)) {
414 if (likely (item))
455 if (likely (item))
/external/sqlite/dist/orig/
H A Dsqlite3.c537 ** expression that is usually false. Macro likely() surrounds
542 # define likely(X) __builtin_expect((X),1) macro
545 # define likely(X) !!(X) macro
2361 ** is running then bad things will likely happen.
4629 ** SQLITE_TRANSIENT value means that the content will likely change in
5867 ** out to disk and so if any I/O errors occur, they will likely occur
6473 ** [SQLITE_DBSTATUS options] is likely
9358 ** anybody smart enough to figure out the code is also likely smart
9425 ** windows and unix. I'm guessing that isn't likely to happen, but by
11196 #define OPFLAG_APPEND 0x08 /* This is likely t
[all...]
/external/sqlite/dist/
H A Dsqlite3.c537 ** expression that is usually false. Macro likely() surrounds
542 # define likely(X) __builtin_expect((X),1) macro
545 # define likely(X) !!(X) macro
2361 ** is running then bad things will likely happen.
4629 ** SQLITE_TRANSIENT value means that the content will likely change in
5867 ** out to disk and so if any I/O errors occur, they will likely occur
6473 ** [SQLITE_DBSTATUS options] is likely
9358 ** anybody smart enough to figure out the code is also likely smart
9425 ** windows and unix. I'm guessing that isn't likely to happen, but by
11196 #define OPFLAG_APPEND 0x08 /* This is likely t
[all...]

Completed in 900 milliseconds