HomeSort by relevance Sort by last modified time
    Searched refs:LIKELY (Results 1 - 25 of 180) 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/v8/tools/clang/rewrite_to_chrome_style/tests/
macros-expected.cc 18 #define LIKELY(x) x
35 if (LIKELY(derived_ptr)) {
macros-original.cc 18 #define LIKELY(x) x
35 if (LIKELY(derivedPtr)) {
  /external/valgrind/include/
pub_tool_libcassert.h 37 ((void) (LIKELY(expr) ? 0 : \
45 ((void) (LIKELY(expr) ? 0 : \
  /external/valgrind/coregrind/
pub_core_libcassert.h 51 ((void) (LIKELY(expr) ? 0 : \
58 ((void) (LIKELY(expr) ? 0 : \
  /art/runtime/entrypoints/quick/
quick_dexcache_entrypoints.cc 76 if (LIKELY(result != nullptr)) {
90 if (LIKELY(result != nullptr)) {
105 if (LIKELY(result != nullptr)) {
117 if (LIKELY(result != nullptr)) {
quick_field_entrypoints.cc 51 if (LIKELY(field != nullptr) && UNLIKELY(h == nullptr)) {
80 if (LIKELY(field != nullptr)) { \
85 if (LIKELY(field != nullptr)) { \
101 if (LIKELY(field != nullptr) && obj != nullptr) { \
106 if (LIKELY(field != nullptr)) { \
122 if (LIKELY(field != nullptr)) { \
136 if (LIKELY(field != nullptr)) { \
153 if (LIKELY(field != nullptr && obj != nullptr)) { \
175 if (LIKELY(field != nullptr)) { \
  /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)) {
  /art/runtime/
utf.cc 53 if (LIKELY((ic & 0x80) == 0)) {
97 if (LIKELY(out_chars == in_bytes)) {
122 if (LIKELY(byte_count == char_count)) {
239 if (LIKELY(ch != 0 && ch < 0x80)) {
art_method-inl.h 116 if (LIKELY(method != nullptr)) {
118 if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) {
264 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
323 if (LIKELY(!IsObsolete())) {
356 if (LIKELY(!IsObsolete())) {
372 if (LIKELY(!IsProxyMethod())) {
450 if (LIKELY(!declaring_class_.IsNull())) {
thread-inl.h 201 if (LIKELY(done)) {
210 if (LIKELY((current_flags &
243 if (LIKELY(old_state_and_flags.as_struct.flags == 0)) {
250 if (LIKELY(tls32_.state_and_flags.as_atomic_int.CompareExchangeWeakAcquire(
366 if (LIKELY(ModifySuspendCountInternal(self, delta, suspend_barrier, for_debugger))) {
oat_quick_method_header.cc 80 LIKELY(is_for_catch_handler) ? code_info.GetCatchStackMapForDexPc(dex_pc, encoding)
  /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 ))
  /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)) {
  /external/valgrind/VEX/priv/
main_util.h 46 #define LIKELY(x) __builtin_expect(!!(x), 1)
60 ((void) (LIKELY(expr) ? 0 : \
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 213 if (LIKELY(HasExtraArgumentsForJni())) {
343 if (LIKELY(HasLocalReferenceSegmentState())) {
352 if (LIKELY(HasHandleScope())) {
386 if (LIKELY(HasNext())) { // Avoid CHECK failure for IsCurrentParam
  /art/runtime/mirror/
stack_trace_element.cc 49 if (LIKELY(trace != nullptr)) {
method.cc 58 if (LIKELY(ret != nullptr)) {
110 if (LIKELY(ret != 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 ))
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 185 if (LIKELY(HasLocalReferenceSegmentState())) { // Local ref. segment state.
193 if (LIKELY(HasHandleScope())) {
  /art/runtime/base/
mutex-inl.h 135 if (LIKELY(cur_state >= 0)) {
159 if (LIKELY(cur_state > 0)) {
  /device/google/contexthub/firmware/os/inc/
toolchain.h 37 /* IAR does not support LIKELY() and UNLIKELY() for optimization purposes. */
38 #define LIKELY(x) (x)
82 #define LIKELY(x) (__builtin_expect(x, 1))
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 297 if (LIKELY(HasExtraArgumentsForJni())) {
391 if (LIKELY(HasLocalReferenceSegmentState())) {
401 if (LIKELY(HasHandleScope())) {
428 if (LIKELY(HasNext())) { // Avoid CHECK failure for IsCurrentParam

Completed in 526 milliseconds

1 2 3 4 5 6 7 8