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.cpp76 const RSInfo::DependencyTableTy &pDeps) {
123 RSInfo *info = RSInfo::ReadFromFile(info_file, pDeps);
187 const RSInfo::DependencyTableTy &pDeps) {
197 info = RSInfo::ExtractFromSource(pScript.getSource(), pDeps);
75 loadScriptCache(const char *pOutputPath, const RSInfo::DependencyTableTy &pDeps) argument
184 compileScript(RSScript &pScript, const char* pScriptName, const char *pOutputPath, const RSInfo::DependencyTableTy &pDeps) argument
H A DRSInfo.cpp88 const DependencyTableTy &pDeps) {
99 if (pInfo.mDependencyTable.size() != (pDeps.size() + NumBuiltInDependencies)) {
102 static_cast<unsigned long>(pDeps.size()), pInputFilename);
161 for (unsigned i = 0; i < pDeps.size(); i++) {
165 if ((::strcmp(pDeps[i].first, cache_dep.first) != 0) ||
166 (::memcmp(pDeps[i].second, cache_dep.second,
170 PRINT_DEPENDENCY("given - ", pDeps[i].first, pDeps[i].second);
86 CheckDependency(const RSInfo &pInfo, const char *pInputFilename, const DependencyTableTy &pDeps) argument
H A DRSInfoExtractor.cpp129 const DependencyTableTy &pDeps)
174 for (unsigned i = 0, e = pDeps.size(); i != e; i++) {
176 string_pool_size += ::strlen(/* name */pDeps[i].first) + 1;
397 for (unsigned i = 0, e = pDeps.size(); i != e; i++) {
398 if (!writeDependency(/* name */pDeps[i].first, /* SHA-1 */pDeps[i].second,
128 ExtractFromSource(const Source &pSource, const DependencyTableTy &pDeps) argument

Completed in 56 milliseconds