HomeSort by relevance Sort by last modified time
    Searched refs:LIKELY (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /art/runtime/gc/accounting/
heap_bitmap-inl.h 40 if (LIKELY(bitmap != nullptr)) {
44 if (LIKELY(lo_bitmap->HasAddress(obj))) {
54 if (LIKELY(bitmap != nullptr)) {
59 if (LIKELY(lo_bitmap->HasAddress(obj))) {
69 if (LIKELY(bitmap != nullptr)) {
74 if (LIKELY(lo_bitmap->HasAddress(obj))) {
86 if (LIKELY(bitmap != nullptr)) {
91 if (LIKELY(lo_bitmap->HasAddress(obj))) {
110 if (LIKELY(bitmap->HasAddress(obj))) {
  /external/valgrind/include/
pub_tool_libcassert.h 37 ((void) (LIKELY(expr) ? 0 : \
45 ((void) (LIKELY(expr) ? 0 : \
  /external/libchrome/base/
bits.h 65 return LIKELY(_BitScanReverse(&index, x)) ? (31 - index) : 32;
73 return LIKELY(_BitScanReverse64(&index, x)) ? (63 - index) : 64;
86 return LIKELY(x) ? __builtin_clz(x) : 32;
90 return LIKELY(x) ? __builtin_clzll(x) : 64;
compiler_specific.h 213 // Macro for hinting that an expression is likely to be false.
222 #if !defined(LIKELY)
224 #define LIKELY(x) __builtin_expect(!!(x), 1)
226 #define LIKELY(x) (x)
228 #endif // !defined(LIKELY)
  /external/pdfium/third_party/base/
bits.h 66 return LIKELY(_BitScanReverse(&index, x)) ? (31 - index) : 32;
74 return LIKELY(_BitScanReverse64(&index, x)) ? (63 - index) : 64;
87 return LIKELY(x) ? __builtin_clz(x) : 32;
91 return LIKELY(x) ? __builtin_clzll(x) : 64;
compiler_specific.h 208 // Macro for hinting that an expression is likely to be false.
217 #if !defined(LIKELY)
219 #define LIKELY(x) __builtin_expect(!!(x), 1)
221 #define LIKELY(x) (x)
223 #endif // !defined(LIKELY)
  /external/valgrind/coregrind/
pub_core_libcassert.h 51 ((void) (LIKELY(expr) ? 0 : \
58 ((void) (LIKELY(expr) ? 0 : \
  /external/pdfium/third_party/base/allocator/partition_allocator/
spin_lock.h 35 if (LIKELY(!lock_.exchange(true, std::memory_order_acquire)))
spin_lock.cc 72 LIKELY(!lock_.exchange(true, std::memory_order_acquire)))
  /device/google/contexthub/lefty/
Lefty.h 20 #undef LIKELY
  /system/core/adb/
adb_trace.h 47 if (LIKELY(!VLOG_IS_ON(TAG))) \
  /art/runtime/gc/space/
dlmalloc_space-inl.h 38 if (LIKELY(obj != nullptr)) {
60 if (LIKELY(result != nullptr)) {
rosalloc_space-inl.h 45 if (LIKELY(result != nullptr)) {
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
macros-expected.cc 15 #define LIKELY(x) x
30 if (LIKELY(derived_ptr)) {
macros-original.cc 15 #define LIKELY(x) x
30 if (LIKELY(derivedPtr)) {
  /external/valgrind/VEX/priv/
main_util.h 47 # define LIKELY(x) (x)
51 # define LIKELY(x) __builtin_expect(!!(x), 1)
67 ((void) (LIKELY(expr) ? 0 : \
  /art/runtime/entrypoints/quick/
quick_field_entrypoints.cc 52 if (LIKELY(field != nullptr) && UNLIKELY(h == nullptr)) {
86 if (LIKELY(field != nullptr)) { \
91 if (LIKELY(field != nullptr)) { \
107 if (LIKELY(field != nullptr) && obj != nullptr) { \
112 if (LIKELY(field != nullptr)) { \
128 if (LIKELY(field != nullptr)) { \
142 if (LIKELY(field != nullptr)) { \
159 if (LIKELY(field != nullptr && obj != nullptr)) { \
181 if (LIKELY(field != nullptr)) { \
  /art/test/ti-agent/
ti_utf.h 35 if (LIKELY((ic & 0x80) == 0)) {
111 if (LIKELY(byte_count == char_count)) {
167 if (LIKELY(ch != 0 && ch < 0x80)) {
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 214 if (LIKELY(HasExtraArgumentsForJni())) {
344 if (LIKELY(HasLocalReferenceSegmentState())) {
353 if (LIKELY(HasHandleScope())) {
387 if (LIKELY(HasNext())) { // Avoid CHECK failure for IsCurrentParam
  /art/libdexfile/dex/
utf.cc 58 if (LIKELY((ic & 0x80) == 0)) {
102 if (LIKELY(out_chars == in_bytes)) {
127 if (LIKELY(byte_count == char_count)) {
244 if (LIKELY(ch != 0 && ch < 0x80)) {
  /art/openjdkjvmti/
ti_allocator.cc 77 if (LIKELY(ret != nullptr)) {
  /art/runtime/mirror/
stack_trace_element.cc 50 if (LIKELY(trace != nullptr)) {
  /frameworks/native/libs/math/include/math/
half.h 24 #ifndef LIKELY
27 # define LIKELY( exp ) (__builtin_expect( !!(exp), true ))
30 # define LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
208 #undef LIKELY
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_fbupdate.h 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
  /system/core/base/include/android-base/
macros.h 118 // vendor code defines LIKELY and UNLIKELY this way, and includes
120 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))

Completed in 542 milliseconds

1 2 3 4 5 6 7 8