Home
last modified time | relevance | path

Searched defs:use (Results 1 – 25 of 54) sorted by relevance

123

/aosp12/art/compiler/optimizing/
H A Dcode_sinking.cc185 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in FindIdealPosition() local
199 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in FindIdealPosition() local
227 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in FindIdealPosition() local
233 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in FindIdealPosition() local
326 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in SinkCodeToUncommonBranch() local
348 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in SinkCodeToUncommonBranch() local
378 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in SinkCodeToUncommonBranch() local
391 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in SinkCodeToUncommonBranch() local
H A Dssa_phi_elimination.cc55 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) { in MarkDeadPhis() local
105 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) { in EliminateDeadPhis() local
114 for (const HUseListNode<HEnvironment*>& use : phi->GetEnvUses()) { in EliminateDeadPhis() local
248 for (const HUseListNode<HInstruction*>& use : current->GetUses()) { in Run() local
H A Dinstruction_simplifier_arm.cc46 bool CanMergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in CanMergeIntoShifterOperand()
49 bool MergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in MergeIntoShifterOperand()
84 bool InstructionSimplifierArmVisitor::TryMergeIntoShifterOperand(HInstruction* use, in TryMergeIntoShifterOperand()
167 for (const HUseListNode<HInstruction*>& use : uses) { in TryMergeIntoUsersShifterOperand() local
H A Descape.cc35 for (const HUseListNode<HInstruction*>& use : reference->GetUses()) { in VisitEscapes() local
81 for (const HUseListNode<HEnvironment*>& use : reference->GetEnvUses()) { in VisitEscapes() local
H A Dinstruction_simplifier_arm64.cc48 bool CanMergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in CanMergeIntoShifterOperand()
51 bool MergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in MergeIntoShifterOperand()
90 bool InstructionSimplifierArm64Visitor::TryMergeIntoShifterOperand(HInstruction* use, in TryMergeIntoShifterOperand()
171 for (const HUseListNode<HInstruction*>& use : uses) { in TryMergeIntoUsersShifterOperand() local
H A Dinstruction_simplifier_shared.cc111 HInstruction* use = mul->GetUses().front().GetUser(); in TryCombineMultiplyAccumulate() local
300 for (const HUseListNode<HInstruction*>& use : index->GetUses()) { in TryExtractVecArrayAccessAddress() local
H A Dpretty_printer.h60 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in PrintPostInstruction() local
H A Dssa_liveness_analysis.h564 for (const UsePosition& use : GetUses()) { in FirstRegisterUseAfter() local
601 for (const UsePosition& use : GetUses()) { in FirstUseAfter() local
753 for (const UsePosition& use : GetUses()) { in Dump() local
863 for (const UsePosition& use : uses_) { variable
1038 for (const UsePosition& use : GetUses()) { in HasSynthesizeUseAt() local
H A Dgraph_checker.cc403 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in VisitInstruction() local
428 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in VisitInstruction() local
459 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in VisitInstruction() local
H A Dssa_builder.cc117 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in AddDependentInstructionsToWorklist() local
424 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in HasAliasInEnvironments() local
H A Dcode_generator_utils.cc214 for (const HUseListNode<HInstruction*>& use : value->GetUses()) { in IsNonNegativeUse() local
H A Dssa_liveness_analysis.cc222 for (const HUseListNode<HInstruction*>& use : current->GetUses()) { in ComputeLiveRanges() local
379 for (const UsePosition& use : GetUses()) { in FindFirstRegisterHint() local
H A Dprepare_for_register_allocation.cc120 for (const HUseListNode<HInstruction*>& use : check->GetUses()) { in VisitClinitCheck() local
H A Dscheduler.cc314 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in AddDependencies() local
396 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) { in AddDependencies() local
H A Dload_store_analysis.cc105 for (const HUseListNode<HInstruction*>& use : reference_->GetUses()) { in PrunePartialEscapeWrites() local
H A Dloop_optimization.cc1195 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) { in Vectorize() local
2376 for (const HUseListNode<HInstruction*>& use : i->GetUses()) { in TrySetPhiInduction() local
2484 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in IsUsedOutsideLoop() local
2497 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { in IsOnlyUsedAfterLoop() local
2590 for (const HUseListNode<HEnvironment*>& use : i->GetEnvUses()) { in CanRemoveCycle() local
H A Dregister_allocator_linear_scan.cc901 size_t use = active->FirstRegisterUseAfter(current->GetStart()); in AllocateBlockedReg() local
928 size_t use = inactive->FirstUseAfter(current->GetStart()); in AllocateBlockedReg() local
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/glwallpaper/
H A DImageWallpaperRenderer.java72 public void use(Consumer<Bitmap> c) { in use() method in ImageWallpaperRenderer
141 public void use(Consumer<Bitmap> consumer) { in use() method in ImageWallpaperRenderer.WallpaperTexture
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/security/
H A DLockscreenDashboardFragmentTest.java136 protected <T extends AbstractPreferenceController> T use(Class<T> clazz) { in use() method in LockscreenDashboardFragmentTest.TestFragment
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/savedaccesspoints2/
H A DSavedAccessPointsWifiSettings2Test.java132 public <T extends AbstractPreferenceController> T use(Class<T> clazz) { in use() method in SavedAccessPointsWifiSettings2Test.TestFragment
/aosp12/frameworks/av/media/libstagefright/renderfright/gl/
H A DProgram.cpp88 void Program::use() { in use() function in android::renderengine::gl::Program
/aosp12/frameworks/native/libs/renderengine/gl/
H A DProgram.cpp97 void Program::use() { in use() function in android::renderengine::gl::Program
/aosp12/packages/services/BuiltInPrintService/jni/lib/
H A Dplugin_db.c111 bool use; in plugin_search() local
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/enterprise/
H A DDeviceAdminAddFragment.java306 protected <T extends PreferenceController> T use(Class<T> clazz, int preferenceKeyResId) { in use() method in DeviceAdminAddFragment
/aosp12/hardware/google/graphics/common/libhwc2.1/libvirtualdisplay/
H A DExynosVirtualDisplay.cpp181 void ExynosVirtualDisplay::setPresentationMode(bool use) in setPresentationMode()

123