Searched refs:existing (Results 1 - 4 of 4) sorted by relevance

/art/compiler/optimizing/
H A Dssa_type_propagation.cc23 static Primitive::Type MergeTypes(Primitive::Type existing, Primitive::Type new_type) { argument
25 switch (existing) {
29 return existing;
38 Primitive::Type existing = phi->GetType(); local
46 return existing != new_type;
H A Dnodes.h313 void ReplaceSuccessor(HBasicBlock* existing, HBasicBlock* new_block) { argument
314 size_t successor_index = GetSuccessorIndexOf(existing);
316 existing->RemovePredecessor(this);
/art/runtime/base/
H A Dbit_vector.cc186 uint32_t existing = storage_[idx]; local
187 uint32_t update = existing | src->GetRawStorageWord(idx);
188 if (existing != update) {
224 uint32_t existing = storage_[idx]; local
225 uint32_t update = existing |
227 if (existing != update) {
234 uint32_t existing = storage_[idx]; local
235 uint32_t update = existing | union_with->GetRawStorageWord(idx);
236 if (existing != update) {
/art/runtime/
H A Dclass_linker.cc987 *error_msg = StringPrintf("Failed to find existing oat file at %s: %s", oat_location,
2270 mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash); local
2271 if (existing != nullptr) {
2274 return EnsureResolved(self, descriptor, existing);
3074 mirror::Class* existing = InsertClass(descriptor, primitive_class, local
3076 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
3222 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash); local
3223 if (existing == nullptr) {
3232 return existing;
3275 mirror::Class* existing local
3306 mirror::Class* existing = existing_it->Read(); local
3418 mirror::Class* existing = LookupClassFromTableLocked(descriptor, nullptr, hash); local
3932 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(), local
4492 mirror::Class* existing = UpdateClass(descriptor, new_class_h.Get(), local
[all...]

Completed in 76 milliseconds