Searched defs:pDeps (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoReader.cpp176 RSInfo *RSInfo::ReadFromFile(InputFile &pInput, const DependencyTableTy &pDeps) { argument
288 if (!CheckDependency(*result, pInput.getName().c_str(), pDeps)) {
H A DRSCompilerDriver.cpp81 const RSInfo::DependencyTableTy &pDeps) {
128 RSInfo *info = RSInfo::ReadFromFile(info_file, pDeps);
193 const RSInfo::DependencyTableTy &pDeps,
204 info = RSInfo::ExtractFromSource(pScript.getSource(), pDeps);
80 loadScriptCache(const char *pOutputPath, const RSInfo::DependencyTableTy &pDeps) argument
189 compileScript(RSScript &pScript, const char* pScriptName, const char *pOutputPath, const char *pRuntimePath, const RSInfo::DependencyTableTy &pDeps, bool pSkipLoad) argument
H A DRSInfo.cpp104 const DependencyTableTy &pDeps) {
115 if (pInfo.mDependencyTable.size() != (pDeps.size() + NumBuiltInDependencies)) {
118 static_cast<unsigned long>(pDeps.size()), pInputFilename);
203 for (unsigned i = 0; i < pDeps.size(); i++) {
207 if ((::strcmp(pDeps[i].first, cache_dep.first) != 0) ||
208 (::memcmp(pDeps[i].second, cache_dep.second,
212 PRINT_DEPENDENCY("given - ", pDeps[i].first, pDeps[i].second);
102 CheckDependency(const RSInfo &pInfo, const char *pInputFilename, const DependencyTableTy &pDeps) argument
H A DRSInfoExtractor.cpp129 const DependencyTableTy &pDeps)
176 for (unsigned i = 0, e = pDeps.size(); i != e; i++) {
178 string_pool_size += ::strlen(/* name */pDeps[i].first) + 1;
410 for (unsigned i = 0, e = pDeps.size(); i != e; i++) {
411 if (!writeDependency(/* name */pDeps[i].first, /* SHA-1 */pDeps[i].second,
128 ExtractFromSource(const Source &pSource, const DependencyTableTy &pDeps) argument

Completed in 68 milliseconds