Home
last modified time | relevance | path

Searched refs:outPath (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DPlistReporter.cpp35 void arcmt::writeARCDiagsToPlist(const std::string &outPath, in writeARCDiagsToPlist() argument
60 llvm::raw_fd_ostream o(outPath, EC, llvm::sys::fs::F_Text); in writeARCDiagsToPlist()
62 llvm::errs() << "error: could not create file: " << outPath << '\n'; in writeARCDiagsToPlist()
H A DInternals.h44 void writeARCDiagsToPlist(const std::string &outPath,
/freebsd-12.1/sys/contrib/zstd/tests/
H A Ddecodecorpus.c1584 char outPath[MAX_PATH]; in generateCorpus() local
1602 if (snprintf(outPath, MAX_PATH, "%s/z%06u.zst", path, fnum) + 1 > MAX_PATH) { in generateCorpus()
1606 outputBuffer(fr.dataStart, (BYTE*)fr.data - (BYTE*)fr.dataStart, outPath); in generateCorpus()
1609 if (snprintf(outPath, MAX_PATH, "%s/z%06u", origPath, fnum) + 1 > MAX_PATH) { in generateCorpus()
1613 outputBuffer(fr.srcStart, (BYTE*)fr.src - (BYTE*)fr.srcStart, outPath); in generateCorpus()
1626 char outPath[MAX_PATH]; in generateCorpusWithDict() local
1631 if (snprintf(outPath, MAX_PATH, "%s/dictionary", path) + 1 > MAX_PATH) { in generateCorpusWithDict()
1653 if (snprintf(outPath, MAX_PATH, "%s/dictionary", path) + 1 > MAX_PATH) { in generateCorpusWithDict()
1658 outputBuffer(fullDict, dictSize, outPath); in generateCorpusWithDict()
1687 outputBuffer(fr.dataStart, (BYTE*)fr.data - (BYTE*)fr.dataStart, outPath); in generateCorpusWithDict()
[all …]
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp1300 llvm::Error writeFile(const lld::File &file, StringRef outPath) override { in writeFile() argument
1303 llvm::raw_fd_ostream out(outPath, ec, llvm::sys::fs::F_Text); in writeFile()