HomeSort by relevance Sort by last modified time
    Searched defs:unlikely (Results 1 - 11 of 11) sorted by null

  /external/oprofile/module/
compat.h 56 #ifndef unlikely
58 #define unlikely(a) __builtin_expect((a), 0) macro
60 #define unlikely(a) (a) macro
  /development/tools/yuv420sp2rgb/
debug.h 7 #define unlikely(expr) __builtin_expect (expr, 0) macro
13 if (unlikely(cond)) { \
22 if (unlikely(!(x))) { \
33 if (unlikely(cond)) { \
83 if(unlikely(verbose_flag)) \
  /external/e2fsprogs/e2fsck/
crc32defs.h 60 #define unlikely(x) __builtin_expect(!!(x), 0) macro
63 #define unlikely(x) (x) macro
  /external/wpa_supplicant_8/src/utils/
radiotap.c 29 #define unlikely(cond) (cond) macro
104 if (unlikely(iterator->bitmap_shifter & (1<<IEEE80211_RADIOTAP_EXT))) {
266 if (unlikely((iterator->arg_index & 31) == 0)) {
  /external/kernel-headers/original/linux/
compiler.h 63 #define unlikely(x) __builtin_expect(!!(x), 0) macro
  /external/linux-tools-perf/
perf.h 183 #define unlikely(x) __builtin_expect(!!(x), 0) macro
  /external/qemu/
osdep.h 26 #define unlikely(x) __builtin_expect(!!(x), 0) macro
  /external/elfutils/lib/
eu-config.h 150 # define unlikely(e) debugpred__ (e,0) macro
155 # define unlikely(expr) __builtin_expect (!!(expr), 0) macro
  /external/harfbuzz_ng/src/
hb-private.hh 152 #define unlikely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 0)) macro
155 #define unlikely(expr) (expr) macro
250 if (unlikely (!number)) return 0;
313 if (unlikely (!new_array))
712 if (unlikely (!returned)) {
747 if (unlikely (returned)) {
817 if (unlikely (!len))
894 if (unlikely (!_hb_options.i))
  /external/sqlite/dist/orig/
sqlite3.c 536 ** The macro unlikely() is a hint that surrounds a boolean
543 # define unlikely(X) __builtin_expect((X),0) macro
546 # define unlikely(X) !!(X) macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 536 ** The macro unlikely() is a hint that surrounds a boolean
543 # define unlikely(X) __builtin_expect((X),0) macro
546 # define unlikely(X) !!(X) macro
    [all...]

Completed in 605 milliseconds