/openbsd/gnu/llvm/llvm/lib/Support/ |
H A D | Compression.cpp | 50 zlib::compress(Input, Output, P.level); in compress() 53 zstd::compress(Input, Output, P.level); in compress() 129 __msan_unpoison(Output, UncompressedSize); in decompress() 136 SmallVectorImpl<uint8_t> &Output, in decompress() argument 138 Output.resize_for_overwrite(UncompressedSize); in decompress() 140 if (UncompressedSize < Output.size()) in decompress() 141 Output.truncate(UncompressedSize); in decompress() 189 __msan_unpoison(Output, UncompressedSize); in decompress() 198 Output.resize_for_overwrite(UncompressedSize); in decompress() 200 if (UncompressedSize < Output.size()) in decompress() [all …]
|
H A D | YAMLTraits.cpp | 467 Output::Output(raw_ostream &yout, void *context, int WrapColumn) in Output() function in Output 470 Output::~Output() = default; 476 void Output::beginMapping() { in beginMapping() 513 void Output::endMapping() { in endMapping() 562 void Output::endFlowMapping() { in endFlowMapping() 567 void Output::beginDocuments() { in beginDocuments() 580 void Output::endDocuments() { in endDocuments() 591 void Output::endSequence() { in endSequence() 626 void Output::endFlowSequence() { in endFlowSequence() 669 void Output::endEnumScalar() { in endEnumScalar() [all …]
|
H A D | Base64.cpp | 38 std::vector<char> &Output) { in decodeBase64() argument 42 Output.clear(); in decodeBase64() 79 Output.push_back((Hex64Bytes[0] << 2) + ((Hex64Bytes[1] >> 4) & 0x03)); in decodeBase64() 80 Output.push_back((Hex64Bytes[1] << 4) + ((Hex64Bytes[2] >> 2) & 0x0f)); in decodeBase64() 81 Output.push_back((Hex64Bytes[2] << 6) + (Hex64Bytes[3] & 0x3f)); in decodeBase64() 87 Output.pop_back(); in decodeBase64() 89 Output.pop_back(); in decodeBase64()
|
/openbsd/gnu/llvm/lldb/source/Utility/ |
H A D | TildeExpressionResolver.cpp | 33 StringRef Expr, SmallVectorImpl<char> &Output) { in ResolveExact() argument 39 return !fs::real_path(Expr, Output, true); in ResolveExact() 43 StringSet<> &Output) { in ResolvePartial() argument 49 Output.clear(); in ResolvePartial() 69 Output.insert(Buffer); in ResolvePartial() 77 StringRef Expr, llvm::SmallVectorImpl<char> &Output) { in ResolveFullPath() argument 79 Output.assign(Expr.begin(), Expr.end()); in ResolveFullPath() 87 if (!ResolveExact(Left, Output)) { in ResolveFullPath() 88 Output.assign(Expr.begin(), Expr.end()); in ResolveFullPath() 92 Output.append(Expr.begin() + Left.size(), Expr.end()); in ResolveFullPath()
|
/openbsd/gnu/llvm/llvm/lib/Option/ |
H A D | Arg.cpp | 87 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const { in renderAsInput() 89 render(Args, Output); in renderAsInput() 93 Output.append(Values.begin(), Values.end()); in renderAsInput() 96 void Arg::render(const ArgList &Args, ArgStringList &Output) const { in render() 99 Output.append(Values.begin(), Values.end()); in render() 110 Output.push_back(Args.MakeArgString(OS.str())); in render() 115 Output.push_back(Args.GetOrMakeJoinedArgString( in render() 117 Output.append(Values.begin() + 1, Values.end()); in render() 121 Output.push_back(Args.MakeArgString(getSpelling())); in render() 122 Output.append(Values.begin(), Values.end()); in render()
|
H A D | ArgList.cpp | 101 A->render(*this, Output); in addOptInFlag() 104 void ArgList::AddAllArgsExcept(ArgStringList &Output, in AddAllArgsExcept() argument 119 Arg->render(*this, Output); in AddAllArgsExcept() 128 void ArgList::AddAllArgs(ArgStringList &Output, in AddAllArgs() argument 131 AddAllArgsExcept(Output, Ids, Exclude); in AddAllArgs() 136 void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0, in AddAllArgs() argument 140 Arg->render(*this, Output); in AddAllArgs() 149 Output.append(Values.begin(), Values.end()); in AddAllArgValues() 160 Output.push_back(MakeArgString(StringRef(Translation) + in AddAllArgsTranslated() 163 Output.push_back(Translation); in AddAllArgsTranslated() [all …]
|
/openbsd/gnu/llvm/llvm/tools/llvm-tapi-diff/ |
H A D | DiffEngine.cpp | 194 std::vector<DiffOutput> Output; in getSingleIF() local 195 diffAttribute("Install Name", Output, in getSingleIF() 207 diffAttribute("InstallAPI", Output, in getSingleIF() 229 return Output; in getSingleIF() 314 std::vector<DiffOutput> Output; in findDifferences() local 316 Output.push_back(recordDifferences( in findDifferences() 324 Output.push_back(recordDifferences( in findDifferences() 338 Output.push_back( in findDifferences() 359 Output.push_back( in findDifferences() 381 Output.push_back( in findDifferences() [all …]
|
/openbsd/gnu/llvm/clang/lib/Driver/ToolChains/ |
H A D | SPIRV.cpp | 22 const InputInfo &Output, in constructTranslateCommand() argument 30 if (Output.getType() == types::TY_PP_Asm) in constructTranslateCommand() 33 CmdArgs.append({"-o", Output.getFilename()}); in constructTranslateCommand() 38 Exec, CmdArgs, Input, Output)); in constructTranslateCommand() 42 const InputInfo &Output, in ConstructJob() argument 49 constructTranslateCommand(C, *this, JA, Output, Inputs[0], {}); in ConstructJob() 78 const InputInfo &Output, in ConstructJob() argument 88 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 92 Inputs, Output)); in ConstructJob()
|
H A D | Minix.cpp | 23 const InputInfo &Output, in ConstructJob() argument 33 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 41 Exec, CmdArgs, Inputs, Output)); in ConstructJob() 45 const InputInfo &Output, in ConstructJob() argument 52 if (Output.isFilename()) { in ConstructJob() 54 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 56 assert(Output.isNothing() && "Invalid output."); in ConstructJob() 98 Exec, CmdArgs, Inputs, Output)); in ConstructJob()
|
H A D | Ananas.cpp | 26 const InputInfo &Output, in ConstructJob() argument 36 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 44 Exec, CmdArgs, Inputs, Output)); in ConstructJob() 48 const InputInfo &Output, in ConstructJob() argument 81 if (Output.isFilename()) { in ConstructJob() 83 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 85 assert(Output.isNothing() && "Invalid output."); in ConstructJob() 109 addLTOOptions(ToolChain, Args, CmdArgs, Output, Inputs[0], in ConstructJob() 134 Exec, CmdArgs, Inputs, Output)); in ConstructJob()
|
H A D | XCore.cpp | 26 const InputInfo &Output, in ConstructJob() argument 34 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 56 Exec, CmdArgs, Inputs, Output)); in ConstructJob() 60 const InputInfo &Output, in ConstructJob() argument 66 if (Output.isFilename()) { in ConstructJob() 68 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 70 assert(Output.isNothing() && "Invalid output."); in ConstructJob() 85 Exec, CmdArgs, Inputs, Output)); in ConstructJob()
|
H A D | AIX.cpp | 28 const InputInfo &Output, in ConstructJob() argument 57 assert((Output.isFilename() || Output.isNothing()) && "Invalid output."); in ConstructJob() 58 if (Output.isFilename()) { in ConstructJob() 60 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 75 Exec, CmdArgs, Inputs, Output)); in ConstructJob() 102 const InputInfo &Output, in ConstructJob() argument 147 assert((Output.isFilename() || Output.isNothing()) && "Invalid output."); in ConstructJob() 148 if (Output.isFilename()) { in ConstructJob() 150 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 197 addLTOOptions(ToolChain, Args, CmdArgs, Output, Inputs[0], in ConstructJob() [all …]
|
H A D | Myriad.cpp | 25 const InputInfo &Output, in ConstructJob() argument 39 assert(Output.getType() == types::TY_PP_Asm); // Require preprocessed asm. in ConstructJob() 76 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 82 Inputs, Output)); in ConstructJob() 86 const InputInfo &Output, in ConstructJob() argument 95 assert(Output.getType() == types::TY_Object); in ConstructJob() 112 Args.MakeArgString(std::string("-o:") + Output.getFilename())); in ConstructJob() 118 Inputs, Output)); in ConstructJob() 122 const InputInfo &Output, in ConstructJob() argument 155 CmdArgs.push_back(Output.getFilename()); in ConstructJob() [all …]
|
H A D | DragonFly.cpp | 27 const InputInfo &Output, in ConstructJob() argument 42 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 50 Exec, CmdArgs, Inputs, Output)); in ConstructJob() 54 const InputInfo &Output, in ConstructJob() argument 87 if (Output.isFilename()) { in ConstructJob() 89 CmdArgs.push_back(Output.getFilename()); in ConstructJob() 91 assert(Output.isNothing() && "Invalid output."); in ConstructJob() 179 Exec, CmdArgs, Inputs, Output)); in ConstructJob()
|
H A D | HIPUtility.cpp | 82 std::string Output = std::string(OutputFileName); in constructHIPFatbinCommand() local 84 Args.MakeArgString(std::string("-output=").append(Output)); in constructHIPFatbinCommand() 91 InputInfo(&JA, Args.MakeArgString(Output)))); in constructHIPFatbinCommand() 99 Compilation &C, const InputInfo &Output, const InputInfoList &Inputs, in constructGenerateObjFileFromHIPFatBinary() argument 102 std::string Name = std::string(llvm::sys::path::stem(Output.getFilename())); in constructGenerateObjFileFromHIPFatBinary() 166 "-o", Output.getFilename(), in constructGenerateObjFileFromHIPFatBinary() 170 McArgs, Inputs, Output)); in constructGenerateObjFileFromHIPFatBinary()
|
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-shell/ |
H A D | rm-unicode-0.txt | 3 # RUN: mkdir -p Output/中文 4 # RUN: echo "" > Output/中文/你好.txt 5 # RUN: rm Output/中文/你好.txt 6 # RUN: echo "" > Output/中文/你好.txt 7 # RUN: rm -r Output/中文
|
/openbsd/gnu/llvm/llvm/include/llvm/Support/ |
H A D | Compression.h | 47 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output, 50 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output, 68 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output, 71 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output, 114 SmallVectorImpl<uint8_t> &Output); 118 uint8_t *Output, size_t UncompressedSize); 120 SmallVectorImpl<uint8_t> &Output, size_t UncompressedSize); 122 SmallVectorImpl<uint8_t> &Output, size_t UncompressedSize);
|
/openbsd/gnu/llvm/llvm/lib/Demangle/ |
H A D | RustDemangle.cpp | 91 OutputBuffer Output; member in __anond672b4d40111::Demangler 161 std::free(D.Output.getBuffer()); in rustDemangle() 165 D.Output += '\0'; in rustDemangle() 167 return D.Output.getBuffer(); in rustDemangle() 1008 Output += C; in print() 1015 Output += S; in print() 1022 Output << N; in printDecimalNumber() 1065 char *Buffer = Output.getBuffer(); in removeNullBytes() 1078 Output[0] = CodePoint; in encodeUTF8() 1089 Output[0] = 0xE0 | (CodePoint >> 12); in encodeUTF8() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/ADT/ |
H A D | FloatingPointMode.h | 87 DenormalModeKind Output = DenormalModeKind::Invalid; member 96 Output(Out), Input(In) {} in DenormalMode() 118 return Output == Other.Output && Input == Other.Input; 126 return Input == Output; in isSimple() 130 return Output != DenormalModeKind::Invalid && in isValid() 181 Mode.Output = parseDenormalFPAttributeComponent(OutputStr); in parseDenormalFPAttribute() 185 Mode.Input = InputStr.empty() ? Mode.Output : in parseDenormalFPAttribute() 192 OS << denormalModeKindName(Output) << ',' << denormalModeKindName(Input); in print()
|
/openbsd/regress/sys/crypto/key_wrap/ |
H A D | key_wrap_test.txt | 8 Output: 19 Output: 30 Output: 41 Output: 52 Output: 63 Output:
|
/openbsd/gnu/llvm/lldb/include/lldb/Utility/ |
H A D | TildeExpressionResolver.h | 35 llvm::SmallVectorImpl<char> &Output) = 0; 48 llvm::StringSet<> &Output) = 0; 53 llvm::SmallVectorImpl<char> &Output); 59 llvm::SmallVectorImpl<char> &Output) override; 60 bool ResolvePartial(llvm::StringRef Expr, llvm::StringSet<> &Output) override;
|
/openbsd/gnu/llvm/llvm/utils/lit/ |
H A D | MANIFEST.in | 7 prune tests/Output 8 prune tests/*/Output 9 prune tests/*/*/Output 10 prune tests/*/*/*/Output
|
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/ |
H A D | Analyses.def | 28 ANALYSIS_DIAGNOSTICS(HTML, "html", "Output analysis results using HTML", 33 "Output analysis results using HTML (not allowing for multi-file bugs)", 36 ANALYSIS_DIAGNOSTICS(PLIST, "plist", "Output analysis results using Plists", 41 "Output analysis results using Plists (allowing for multi-file bugs)", 45 "Output analysis results using HTML wrapped with Plists", 48 ANALYSIS_DIAGNOSTICS(SARIF, "sarif", "Output analysis results using SARIF", 52 "Output analysis results using both SARIF and HTML "
|
/openbsd/gnu/llvm/clang/include/clang/Tooling/ |
H A D | CompilationDatabase.h | 47 std::vector<std::string> CommandLine, const Twine &Output) in CompileCommand() 49 CommandLine(std::move(CommandLine)), Output(Output.str()) {} in CompileCommand() 61 std::string Output; member 70 LHS.CommandLine == RHS.CommandLine && LHS.Output == RHS.Output &&
|
/openbsd/gnu/llvm/llvm/tools/llvm-libtool-darwin/ |
H A D | DependencyInfo.h | 31 std::string Output) { in write() argument 63 AddDep(DependencyInfoOpcode::Output, Output); in write() 71 Output = 0x40, enumerator 84 std::string Output) override {} in write() argument
|