Searched refs:candidate (Results 1 – 12 of 12) sorted by relevance
/art/compiler/optimizing/ |
D | instruction_simplifier_x86_shared.cc | 67 HInstruction* candidate = nullptr; in TryGenerateResetLeastSetBit() local 72 candidate = left; in TryGenerateResetLeastSetBit() 75 candidate = right; in TryGenerateResetLeastSetBit() 78 if (candidate != nullptr && candidate->HasOnlyOneNonEnvironmentUse()) { in TryGenerateResetLeastSetBit() 83 DCHECK(!candidate->HasUses()); in TryGenerateResetLeastSetBit() 84 candidate->GetBlock()->RemoveInstruction(candidate); in TryGenerateResetLeastSetBit() 103 HInstruction* candidate = nullptr; in TryGenerateMaskUptoLeastSetBit() local 105 candidate = left; in TryGenerateMaskUptoLeastSetBit() 108 candidate = right; in TryGenerateMaskUptoLeastSetBit() 111 if (candidate != nullptr && candidate->HasOnlyOneNonEnvironmentUse()) { in TryGenerateMaskUptoLeastSetBit() [all …]
|
D | ssa_phi_elimination.cc | 164 HInstruction* candidate = nullptr; in Run() local 177 } else if (candidate == nullptr) { in Run() 178 candidate = input; in Run() 179 } else if (candidate != input) { in Run() 180 candidate = nullptr; in Run() 188 if (candidate == nullptr) { in Run() 207 } else if (candidate == nullptr) { in Run() 208 candidate = input; in Run() 209 } else if (candidate != input) { in Run() 210 candidate = nullptr; in Run() [all …]
|
D | scheduler.cc | 532 SchedulingNode* candidate = (*nodes)[select]; in PopHighestPriorityNode() local 533 select_node = GetHigherPrioritySchedulingNode(candidate, check); in PopHighestPriorityNode() 546 SchedulingNode* candidate, SchedulingNode* check) const { in GetHigherPrioritySchedulingNode() argument 547 uint32_t candidate_path = candidate->GetCriticalPath(); in GetHigherPrioritySchedulingNode() 551 return check_path < candidate_path ? check : candidate; in GetHigherPrioritySchedulingNode() 555 return check->GetLatency() < candidate->GetLatency() ? check : candidate; in GetHigherPrioritySchedulingNode()
|
D | ssa_liveness_analysis.h | 499 LiveRange* candidate = FindRangeAtOrAfter(position, range_search_start_); in Covers() local 500 range_search_start_ = candidate; in Covers() 501 return (candidate != nullptr && candidate->GetStart() <= position); in Covers() 506 LiveRange* candidate = FindRangeAtOrAfter(position, first_range_); in CoversSlow() local 507 return candidate != nullptr && candidate->GetStart() <= position; in CoversSlow()
|
D | scheduler.h | 487 SchedulingNode* GetHigherPrioritySchedulingNode(SchedulingNode* candidate,
|
D | intrinsics_arm_vixl.cc | 1402 static const char* GetConstString(HInstruction* candidate, uint32_t* utf16_length) { in GetConstString() argument 1403 if (candidate->IsLoadString()) { in GetConstString() 1404 HLoadString* load_string = candidate->AsLoadString(); in GetConstString()
|
D | intrinsics_arm64.cc | 1325 static const char* GetConstString(HInstruction* candidate, uint32_t* utf16_length) { in GetConstString() argument 1326 if (candidate->IsLoadString()) { in GetConstString() 1327 HLoadString* load_string = candidate->AsLoadString(); in GetConstString()
|
/art/test/150-loadlibrary/src/ |
D | Main.java | 36 String candidate = p + libName; in main() local 37 if (new File(candidate).exists()) { in main() 38 fileName = candidate; in main()
|
/art/test/674-hiddenapi/src-art/ |
D | Main.java | 138 String candidate = p + libName; in prepareNativeLibFileName() local 139 if (new File(candidate).exists()) { in prepareNativeLibFileName() 140 nativeLibFileName = candidate; in prepareNativeLibFileName()
|
/art/runtime/base/ |
D | timing_logger.cc | 99 Histogram<uint64_t> candidate(label.c_str()); in AddPair() local 100 auto it = histograms_.find(&candidate); in AddPair()
|
/art/runtime/mirror/ |
D | dex_cache-inl.h | 225 GcRoot<mirror::CallSite> candidate(call_site); in SetResolvedCallSite() 231 if (ref.CompareAndSetStrongSequentiallyConsistent(null_call_site, candidate)) { in SetResolvedCallSite()
|
/art/runtime/jni/ |
D | jni_id_manager.cc | 334 [&found, &self, t](const ArtType* candidate) { in EncodeGenericId() argument 336 found = found || candidate == t.Get(); in EncodeGenericId()
|