/external/llvm/tools/llvm-lto/ |
D | llvm-lto.cpp | 478 std::string OutputName = OutputFilename; in distributedIndexes() local 479 if (OutputName.empty()) { in distributedIndexes() 480 OutputName = Filename + ".thinlto.bc"; in distributedIndexes() 482 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes() 484 raw_fd_ostream OS(OutputName, EC, sys::fs::OpenFlags::F_None); in distributedIndexes() 485 error(EC, "error opening the file '" + OutputName + "'"); in distributedIndexes() 504 std::string OutputName = OutputFilename; in emitImports() local 505 if (OutputName.empty()) { in emitImports() 506 OutputName = Filename + ".imports"; in emitImports() 508 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in emitImports() [all …]
|
/external/llvm-project/llvm/tools/llvm-lto/ |
D | llvm-lto.cpp | 650 std::string OutputName = OutputFilename; in distributedIndexes() local 651 if (OutputName.empty()) { in distributedIndexes() 652 OutputName = Filename + ".thinlto.bc"; in distributedIndexes() 654 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes() 656 raw_fd_ostream OS(OutputName, EC, sys::fs::OpenFlags::OF_None); in distributedIndexes() 657 error(EC, "error opening the file '" + OutputName + "'"); in distributedIndexes() 680 std::string OutputName = OutputFilename; in emitImports() local 681 if (OutputName.empty()) { in emitImports() 682 OutputName = Filename + ".imports"; in emitImports() 684 OutputName = in emitImports() [all …]
|
/external/llvm-project/compiler-rt/lib/profile/ |
D | InstrProfilingFile.c | 318 static FILE *getFileObject(const char *OutputName) { in getFileObject() argument 325 return fopen(OutputName, "ab"); in getFileObject() 329 static int writeFile(const char *OutputName) { in writeFile() argument 336 OutputFile = openFileForMerging(OutputName, &MergeDone); in writeFile() 338 OutputFile = getFileObject(OutputName); in writeFile() 362 static int writeOrderFile(const char *OutputName) { in writeOrderFile() argument 366 OutputFile = fopen(OutputName, "w"); in writeOrderFile() 369 PROF_WARN("can't open file with mode ab: %s\n", OutputName); in writeOrderFile()
|
/external/compiler-rt/lib/profile/ |
D | InstrProfilingFile.c | 199 static int writeFile(const char *OutputName) { in writeFile() argument 204 OutputFile = fopen(OutputName, "ab"); in writeFile() 206 OutputFile = openFileForMerging(OutputName); in writeFile()
|
/external/llvm/include/llvm/LTO/legacy/ |
D | ThinLTOCodeGenerator.h | 210 static void emitImports(StringRef ModulePath, StringRef OutputName,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/legacy/ |
D | ThinLTOCodeGenerator.h | 260 void emitImports(Module &Module, StringRef OutputName,
|
/external/llvm-project/llvm/include/llvm/LTO/legacy/ |
D | ThinLTOCodeGenerator.h | 260 void emitImports(Module &Module, StringRef OutputName,
|
/external/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 589 StringRef OutputName, in emitImports() argument 604 if ((EC = EmitImportsFiles(ModulePath, OutputName, ImportLists))) in emitImports() 605 report_fatal_error(Twine("Failed to open ") + OutputName + in emitImports()
|
/external/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 171 StringRef OutputName; in ActOnGCCAsmStmt() local 173 OutputName = Names[i]->getName(); in ActOnGCCAsmStmt() 175 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName); in ActOnGCCAsmStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 267 StringRef OutputName; in ActOnGCCAsmStmt() local 269 OutputName = Names[i]->getName(); in ActOnGCCAsmStmt() 271 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName); in ActOnGCCAsmStmt()
|
/external/llvm-project/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 777 void ThinLTOCodeGenerator::emitImports(Module &TheModule, StringRef OutputName, in emitImports() argument 808 if ((EC = EmitImportsFiles(ModuleIdentifier, OutputName, in emitImports() 810 report_fatal_error(Twine("Failed to open ") + OutputName + in emitImports()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 747 void ThinLTOCodeGenerator::emitImports(Module &TheModule, StringRef OutputName, in emitImports() argument 778 if ((EC = EmitImportsFiles(ModuleIdentifier, OutputName, in emitImports() 780 report_fatal_error(Twine("Failed to open ") + OutputName + in emitImports()
|
/external/tensorflow/tensorflow/c/ |
D | c_api.cc | 645 string OutputName(const TF_Output& output) { in OutputName() function 2292 input_pairs[i].first = OutputName(inputs[i]); in TF_SessionRun() 2298 output_names[i] = OutputName(outputs[i]); in TF_SessionRun() 2326 input_names[i] = OutputName(inputs[i]); in TF_SessionPRunSetup() 2331 output_names[i] = OutputName(outputs[i]); in TF_SessionPRunSetup() 2374 input_pairs[i].first = OutputName(inputs[i]); in TF_SessionPRun() 2380 output_names[i] = OutputName(outputs[i]); in TF_SessionPRun()
|