HomeSort by relevance Sort by last modified time
    Searched full:__builtin_expect (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/oprofile/m4/
builtinexpect.m4 4 AC_MSG_CHECKING([whether __builtin_expect is understood])
9 if (__builtin_expect(i, 0)) { }
  /external/clang/test/CodeGen/
builtin-expect.c 8 if (__builtin_expect (x, y()))
17 (void) __builtin_expect((isigprocmask(), 0), bar());
27 if (__builtin_expect (x, 1))
35 switch(__builtin_expect(x, 5)) {
  /system/core/include/cutils/
compiler.h 25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
atomic-arm.h 110 } while (__builtin_expect(status != 0, 0));
122 if (__builtin_expect(status == 0, 1))
165 } while (__builtin_expect(status != 0, 0));
177 } while (__builtin_expect(status != 0, 0));
207 } while (__builtin_expect(status != 0, 0));
218 } while (__builtin_expect(status != 0, 0));
238 } while (__builtin_expect(status != 0, 0));
249 } while (__builtin_expect(status != 0, 0));
atomic-x86.h 128 } while (__builtin_expect(status != 0, 0));
138 } while (__builtin_expect(status != 0, 0));
  /external/clang/test/Sema/
constant-builtins.c 18 //int h2 = __builtin_expect(0, 0);
constant-builtins-2.c 50 //int h2 = __builtin_expect(0, 0);
52 extern __typeof__(__builtin_expect(0, 0)) bi0;
  /external/oprofile/module/
compat.h 51 #define likely(a) __builtin_expect((a), 1)
58 #define unlikely(a) __builtin_expect((a), 0)
  /external/e2fsprogs/intl/
bindtextdom.c 156 if (__builtin_expect (result != NULL, 1))
161 if (__builtin_expect (result != NULL, 1))
194 if (__builtin_expect (result != NULL, 1))
198 if (__builtin_expect (result != NULL, 1))
227 if (__builtin_expect (new_binding == NULL, 0))
248 if (__builtin_expect (result == NULL, 0))
253 if (__builtin_expect (result == NULL, 0))
279 if (__builtin_expect (result == NULL, 0))
284 if (__builtin_expect (result == NULL, 0))
  /development/tools/yuv420sp2rgb/
debug.h 7 #define unlikely(expr) __builtin_expect (expr, 0)
8 #define likely(expr) __builtin_expect (expr, 1)
  /external/clang/test/Analysis/
unix-fns.c 38 do { if (__builtin_expect(*(&pred), ~0l) != ~0l) dispatch_once((&pred), (^() {})); } while (0); // expected-warning{{Call to 'dispatch_once' uses the local variable 'pred' for the predicate value}}
42 do { if (__builtin_expect(*(&pred), ~0l) != ~0l) dispatch_once((&pred), (^() {})); } while (0); // no-warning
  /external/webkit/Source/JavaScriptCore/wtf/
AlwaysInline.h 45 #define UNLIKELY(x) __builtin_expect((x), 0)
53 #define LIKELY(x) __builtin_expect((x), 1)