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

1 2 3 4 5 6

  /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/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/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)))
  /external/libchrome/base/
bits.h 64 return LIKELY(_BitScanReverse(&index, static_cast<uint32_t>(x)))
76 return LIKELY(_BitScanReverse64(&index, static_cast<uint64_t>(x)))
88 return LIKELY(_BitScanForward(&index, static_cast<uint32_t>(x))) ? index
99 return LIKELY(_BitScanForward64(&index, static_cast<uint64_t>(x))) ? index
128 return LIKELY(value)
140 return LIKELY(value) ? bits == 64
compiler_specific.h 204 // Macro for hinting that an expression is likely to be false.
213 #if !defined(LIKELY)
215 #define LIKELY(x) __builtin_expect(!!(x), 1)
217 #define LIKELY(x) (x)
219 #endif // !defined(LIKELY)
  /device/google/contexthub/lefty/
Lefty.h 20 #undef LIKELY
  /external/libaom/libaom/aom_dsp/x86/
sum_squares_avx2.c 68 if (LIKELY(width == 4 && height == 4)) {
70 } else if (LIKELY(width == 4 && (height & 3) == 0)) {
72 } else if (LIKELY(width == 8 && (height & 3) == 0)) {
74 } else if (LIKELY(((width & 15) == 0) && ((height & 3) == 0))) {
  /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/libaom/libaom/aom_dsp/
aom_dsp_common.h 45 #define LIKELY(v) __builtin_expect(v, 1)
48 #define LIKELY(v) (v)
  /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)) {
  /art/runtime/interpreter/
interpreter_cache.h 68 if (LIKELY(entry.first == key)) {
  /art/runtime/mirror/
method.cc 32 if (LIKELY(ret != nullptr)) {
52 if (LIKELY(ret != nullptr)) {
class-alloc-inl.h 63 if (add_finalizer && LIKELY(obj != nullptr)) {
object_array-alloc-inl.h 73 if (LIKELY(new_array != nullptr)) {
stack_trace_element.cc 37 if (LIKELY(trace != nullptr)) {
  /art/runtime/entrypoints/quick/
quick_field_entrypoints.cc 45 if (LIKELY(field != nullptr) && UNLIKELY(h == nullptr)) {
79 if (LIKELY(field != nullptr)) { \
84 if (LIKELY(field != nullptr)) { \
100 if (LIKELY(field != nullptr) && obj != nullptr) { \
105 if (LIKELY(field != nullptr)) { \
121 if (LIKELY(field != nullptr)) { \
135 if (LIKELY(field != nullptr)) { \
152 if (LIKELY(field != nullptr && obj != nullptr)) { \
174 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 215 if (LIKELY(HasExtraArgumentsForJni())) {
345 if (LIKELY(HasLocalReferenceSegmentState())) {
354 if (LIKELY(HasHandleScope())) {
388 if (LIKELY(HasNext())) { // Avoid CHECK failure for IsCurrentParam
  /art/libdexfile/dex/
utf.cc 57 if (LIKELY((ic & 0x80) == 0)) {
101 if (LIKELY(out_chars == in_bytes)) {
126 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/
oat_quick_method_header.cc 67 LIKELY(is_for_catch_handler) ? code_info.GetCatchStackMapForDexPc(dex_pc)

Completed in 751 milliseconds

1 2 3 4 5 6