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

1 2 3 4 5 6 7

  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 46 if (UNLIKELY(array == NULL)) {
51 if (UNLIKELY(static_cast<int32_t>(payload->element_count) > array->GetLength())) {
quick_jni_entrypoints.cc 71 if (UNLIKELY(self->GetJniEnv()->check_jni)) {
88 if (UNLIKELY(self->GetJniEnv()->check_jni)) {
quick_invoke_entrypoints.cc 37 if (UNLIKELY(method == NULL)) {
123 if (UNLIKELY(method == NULL)) {
132 if (UNLIKELY(code == NULL)) {
153 if (UNLIKELY(method == NULL)) {
156 if (UNLIKELY(method == NULL)) {
166 if (UNLIKELY(code == NULL)) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMDataStore.cpp 64 if (UNLIKELY(!!data->workerDOMDataStore()))
69 if (UNLIKELY(!!isolatedWorld))
V8BindingMacros.h 66 if (UNLIKELY(!ok)) \
82 if (UNLIKELY(!ok)) { \
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContextAnnotation.h 39 if (UNLIKELY(paintInfo.context->annotationMode())) \
89 if (UNLIKELY(m_context != 0))
  /art/runtime/
thread-inl.h 74 } while (UNLIKELY(android_atomic_cas(old_state_and_flags.as_int, new_state_and_flags.as_int,
78 if (UNLIKELY((flag_change & kCheckpointRequest) != 0)) {
94 if (UNLIKELY((old_state_and_flags.as_struct.flags & kSuspendRequest) != 0)) {
119 if (UNLIKELY(!done)) {
123 } while (UNLIKELY(!done));
indirect_reference_table.cc 68 if (UNLIKELY(checkRef != iref)) {
155 if (UNLIKELY(begin() != end())) {
165 if (UNLIKELY(iref == NULL)) {
169 if (UNLIKELY(GetIndirectRefKind(iref) == kSirtOrInvalid)) {
177 if (UNLIKELY(idx >= topIndex)) {
184 if (UNLIKELY(table_[idx] == NULL)) {
190 if (UNLIKELY(!CheckEntry("use", iref, idx))) {
class_linker-inl.h 32 if (UNLIKELY(resolved_string == NULL)) {
44 if (UNLIKELY(resolved_type == NULL)) {
58 if (UNLIKELY(resolved_type == NULL)) {
71 if (UNLIKELY(resolved_method == NULL || resolved_method->IsRuntimeMethod())) {
86 if (UNLIKELY(resolved_field == NULL)) {
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 74 if (UNLIKELY(!thread_inited))
82 if (UNLIKELY(!thread_inited))
89 if (UNLIKELY(!thread_inited))
99 if (UNLIKELY(!thread_inited))
112 if (UNLIKELY(!thread_inited))
120 if (UNLIKELY(!thread_inited))
128 if (UNLIKELY(!thread_inited))
  /art/runtime/entrypoints/
entrypoint_utils.cc 40 if (UNLIKELY(component_count < 0)) {
45 if (UNLIKELY(klass == NULL)) { // Not in dex cache so try to resolve
52 if (UNLIKELY(klass->IsPrimitive() && !klass->IsPrimitiveInt())) {
67 if (UNLIKELY(!referrer_klass->CanAccess(klass))) {
96 if (UNLIKELY(resolved_field == NULL)) {
102 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
107 if (UNLIKELY(!referring_class->CanAccess(fields_class) ||
117 if (UNLIKELY(!referring_class->CanAccess(fields_class))) {
120 } else if (UNLIKELY(!referring_class->CanAccessMember(fields_class,
126 if (UNLIKELY(is_set && resolved_field->IsFinal() && (fields_class != referring_class)))
    [all...]
entrypoint_utils.h 51 if (UNLIKELY(klass == NULL)) {
59 if (UNLIKELY(!klass->IsInstantiable())) {
66 if (UNLIKELY(!referrer->CanAccess(klass))) {
87 if (UNLIKELY(component_count < 0)) {
92 if (UNLIKELY(klass == NULL)) { // Not in dex cache so try to resolve
102 if (UNLIKELY(!referrer->CanAccess(klass))) {
140 if (UNLIKELY(resolved_field == NULL)) {
145 if (UNLIKELY(!fields_class->IsInitializing())) {
168 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
173 if (UNLIKELY(!referring_class->CanAccess(fields_class) |
    [all...]
  /art/runtime/mirror/
array.cc 47 if (UNLIKELY(data_size >> component_shift != size_t(component_count) || size < data_size)) {
81 if (UNLIKELY(new_array.get() == NULL)) {
90 if (UNLIKELY(sub_array == NULL)) {
111 if (UNLIKELY(dimension < 0)) {
124 if (UNLIKELY(array_class == NULL)) {
130 if (UNLIKELY(new_array == NULL)) {
object_array-inl.h 34 if (UNLIKELY(array == NULL)) {
43 if (UNLIKELY(!IsValidIndex(i))) {
54 if (UNLIKELY(!object->InstanceOf(element_class))) {
  /art/runtime/entrypoints/portable/
portable_cast_entrypoints.cc 36 if (UNLIKELY(!dest_type->IsAssignableFrom(src_type))) {
52 if (UNLIKELY(!component_type->IsAssignableFrom(element_class))) {
portable_fillarray_entrypoints.cc 33 if (UNLIKELY(array == NULL)) {
38 if (UNLIKELY(static_cast<int32_t>(payload->element_count) > array->GetLength())) {
portable_invoke_entrypoints.cc 36 if (UNLIKELY(method == NULL)) {
39 if (UNLIKELY(method == NULL)) {
48 if (UNLIKELY(code == NULL)) {
portable_jni_entrypoints.cc 70 if (UNLIKELY(self->GetJniEnv()->check_jni)) {
89 if (UNLIKELY(self->GetJniEnv()->check_jni)) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
Compiler.h 153 /* UNLIKELY */
155 #ifndef UNLIKELY
157 #define UNLIKELY(x) __builtin_expect((x), 0)
159 #define UNLIKELY(x) (x)
  /external/valgrind/main/VEX/priv/
main_util.h 47 #define UNLIKELY(x) __builtin_expect(!!(x), 0)
host_s390_defs.c     [all...]
  /art/compiler/dex/
arena_allocator.h 107 if (UNLIKELY(ptr_ + bytes > end_)) {
110 if (UNLIKELY(ptr_ == nullptr)) {
  /art/runtime/native/
java_lang_reflect_Array.cc 47 if (UNLIKELY(length < 0)) {
56 if (UNLIKELY(array_class == NULL)) {
java_lang_System.cc 185 if (UNLIKELY(javaSrc == NULL)) {
189 if (UNLIKELY(javaDst == NULL)) {
197 if (UNLIKELY(!srcObject->IsArrayInstance())) {
201 if (UNLIKELY(!dstObject->IsArrayInstance())) {
211 if (UNLIKELY(srcPos < 0 || dstPos < 0 || length < 0 || srcPos > srcArray->GetLength() - length || dstPos > dstArray->GetLength() - length)) {
222 if (UNLIKELY(srcComponentType != dstComponentType)) {
308 if (UNLIKELY(i != length)) {
  /art/runtime/base/
mutex-inl.h 92 if (UNLIKELY(self == NULL)) {
101 if (UNLIKELY(held_mutex != NULL)) {
122 if (UNLIKELY(self == NULL)) {

Completed in 919 milliseconds

1 2 3 4 5 6 7