Searched defs:bcFileName (Results 1 - 2 of 2) sorted by relevance

/frameworks/rs/cpu_ref/
H A DrsCpuScript.cpp61 const std::string& bcFileName,
125 args->push_back(bcFileName.c_str());
129 static bool compileBitcode(const std::string &bcFileName, argument
135 FILE *bcfile = fopen(bcFileName.c_str(), "w");
137 ALOGE("Could not write to %s", bcFileName.c_str());
144 bcFileName.c_str());
325 std::string bcFileName(cacheDir);
326 bcFileName.append("/");
327 bcFileName.append(resName);
328 bcFileName
60 setCompileArguments(std::vector<const char*>* args, const std::string& bcFileName, const char* cacheDir, const char* resName, const char* core_lib, bool useRSDebugContext, const char* bccPluginName, bool emitGlobalInfo, int optLevel, bool emitGlobalInfoSkipConstant) argument
[all...]
/frameworks/rs/rsov/driver/
H A DrsovScript.cpp58 std::vector<const char *> setCompilerArgs(const char *bcFileName, argument
60 rsAssert(bcFileName && cacheDir);
65 args.push_back(bcFileName);
102 std::string bcFileName(cacheDir);
103 bcFileName.append("/");
104 bcFileName.append(resName);
105 bcFileName.append(".bc");
107 writeBytes(bcFileName.c_str(), bitcode, bitcodeSize);
109 auto args = setCompilerArgs(bcFileName.c_str(), cacheDir);

Completed in 52 milliseconds