Searched refs:Load (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/compile/libbcc/lib/
H A DRSInvariant.cpp97 return "Renderscript Invariant Load Annotation";
106 * chain reaches the pointer operand of a Load, mark that Load as
127 } else if (auto Load = llvm::dyn_cast<llvm::LoadInst>(Inst)) {
128 if (Use.get() == Load->getPointerOperand()) {
129 Load->setMetadata("invariant.load", EmptyMDNode);
142 llvm::RegisterPass<RSInvariantPass> X("rsinvariant", "RS Invariant Load Pass");
/frameworks/base/libs/androidfw/include/androidfw/
H A DIdmap.h42 static std::unique_ptr<const LoadedIdmap> Load(const StringPiece& idmap_data);
H A DLoadedArsc.h81 static std::unique_ptr<const LoadedPackage> Load(const Chunk& chunk,
192 // Load a resource table from memory pointed to by `data` of size `len`.
198 static std::unique_ptr<const LoadedArsc> Load(const StringPiece& data,
H A DApkAssets.h40 static std::unique_ptr<const ApkAssets> Load(const std::string& path, bool system = false);
/frameworks/base/libs/androidfw/tests/
H A DApkAssets_test.cpp39 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk");
65 ApkAssets::Load(GetTestDataPath() + "/appaslib/appaslib.apk");
117 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk");
127 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk");
H A DLoadedArsc_test.cpp48 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
74 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
98 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
118 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
144 LoadedArsc::Load(StringPiece(contents), nullptr /*loaded_idmap*/, false /*system*/,
158 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
204 std::unique_ptr<const LoadedArsc> loaded_arsc = LoadedArsc::Load(StringPiece(contents));
254 LoadedArsc::Load(StringPiece(contents), &loaded_idmap);
H A DTheme_bench.cpp31 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
65 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
H A DAssetManager2_bench.cpp41 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
64 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
132 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
180 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
216 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
H A DBenchmarkHelpers.cpp59 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
H A DAttributeResolution_bench.cpp40 ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
83 std::unique_ptr<const ApkAssets> framework_apk = ApkAssets::Load(kFrameworkPath);
90 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk");
H A DTheme_test.cpp37 system_assets_ = ApkAssets::Load(GetTestDataPath() + "/system/system.apk", true /*system*/);
40 style_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
43 libclient_assets_ = ApkAssets::Load(GetTestDataPath() + "/libclient/libclient.apk");
46 lib_one_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_one/lib_one.apk");
49 lib_two_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_two/lib_two.apk");
H A DAssetManager2_test.cpp48 basic_assets_ = ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk");
51 basic_de_fr_assets_ = ApkAssets::Load(GetTestDataPath() + "/basic/basic_de_fr.apk");
54 style_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
57 lib_one_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_one/lib_one.apk");
60 lib_two_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_two/lib_two.apk");
63 libclient_assets_ = ApkAssets::Load(GetTestDataPath() + "/libclient/libclient.apk");
69 system_assets_ = ApkAssets::Load(GetTestDataPath() + "/system/system.apk", true /*system*/);
72 app_assets_ = ApkAssets::Load(GetTestDataPath() + "/app/app.apk");
H A DAttributeResolution_test.cpp37 styles_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
/frameworks/rs/rsov/compiler/
H A DGlobalMergePass.cpp104 LoadInst *Load = new LoadInst(MergedGV, "", InsertBefore);
105 DEBUG(Load->dump());
106 Base = new BitCastInst(Load, PointerType::getUnqual(MergedTy), "",
197 LoadInst *Load = LLVMIRBuilder.CreateLoad(MergedGV); local
198 LLVMIRBuilder.CreateMemCpy(Load, MergedInit, BufferSize, 0);
/frameworks/native/cmds/installd/
H A Dsystem_properties.h32 bool Load(const std::string& strFile) { function in class:android::installd::SystemProperties
/frameworks/base/libs/androidfw/
H A DApkAssets.cpp46 std::unique_ptr<const ApkAssets> ApkAssets::Load(const std::string& path, bool system) { function in class:android::ApkAssets
65 std::unique_ptr<const LoadedIdmap> loaded_idmap = LoadedIdmap::Load(idmap_data);
150 LoadedArsc::Load(data, loaded_idmap.get(), system, load_as_shared_library);
H A DIdmap.cpp118 std::unique_ptr<const LoadedIdmap> LoadedIdmap::Load(const StringPiece& idmap_data) { function in class:android::LoadedIdmap
H A DLoadedArsc.cpp369 std::unique_ptr<const LoadedPackage> LoadedPackage::Load(const Chunk& chunk, function in class:android::LoadedPackage
372 ATRACE_NAME("LoadedPackage::Load");
631 LoadedPackage::Load(child_chunk, loaded_idmap, system_, load_as_shared_library);
653 std::unique_ptr<const LoadedArsc> LoadedArsc::Load(const StringPiece& data, function in class:android::LoadedArsc
/frameworks/native/services/vr/performanced/
H A Dcpu_set.h70 void Load(const std::string& cpuset_root);
H A Dcpu_set.cpp33 void CpuSetManager::Load(const std::string& cpuset_root) { function in class:android::dvr::CpuSetManager
H A Dperformance_service.cpp107 cpuset_.Load(kCpuSetBasePath);
/frameworks/base/core/jni/
H A Dandroid_content_res_ApkAssets.cpp49 apk_assets = ApkAssets::Load(path.c_str(), system);
/frameworks/rs/script_api/
H A Drs_matrix.spec217 summary: Load or copy a matrix
262 summary: Load a frustum projection matrix
276 summary: Load identity matrix
312 summary: Load an orthographic projection matrix
332 summary: Load a perspective projection matrix
348 summary: Load a rotation matrix
364 summary: Load a scaling matrix
379 summary: Load a translation matrix
H A Drs_graphics.spec814 summary: Load the model matrix for a bound fixed function vertex program
816 Load the model matrix for a currently bound fixed function
828 summary: Load the projection matrix for a bound fixed function vertex program
830 Load the projection matrix for a currently bound fixed function
842 summary: Load the texture matrix for a bound fixed function vertex program
844 Load the texture matrix for a currently bound fixed function
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h134 void Load();

Completed in 284 milliseconds

12