| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Compression.cpp | 47 SmallVectorImpl<uint8_t> &Output) { in compress() argument 50 zlib::compress(Input, Output, P.level); in compress() 53 zstd::compress(Input, Output, P.level); in compress() 59 uint8_t *Output, size_t UncompressedSize) { in decompress() argument 62 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 64 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 70 SmallVectorImpl<uint8_t> &Output, in decompress() argument 74 return zlib::decompress(Input, Output, UncompressedSize); in decompress() 76 return zstd::decompress(Input, Output, UncompressedSize); in decompress() 82 SmallVectorImpl<uint8_t> &Output, in decompress() argument [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; 472 bool Output::outputting() const { in outputting() 476 void Output::beginMapping() { in beginMapping() 482 bool Output::mapTag(StringRef Tag, bool Use) { in mapTag() 513 void Output::endMapping() { in endMapping() 524 std::vector<StringRef> Output::keys() { in keys() 528 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault, in preflightKey() 545 void Output::postflightKey(void *) { in postflightKey() 555 void Output::beginFlowMapping() { in beginFlowMapping() [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-src/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-src/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 | 97 void ArgList::addOptInFlag(ArgStringList &Output, OptSpecifier Pos, in addOptInFlag() argument 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() 144 void ArgList::AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, in AddAllArgValues() argument 149 Output.append(Values.begin(), Values.end()); in AddAllArgValues() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-tapi-diff/ |
| H A D | DiffEngine.cpp | 181 void diffAttribute(std::string Name, std::vector<DiffOutput> &Output, in diffAttribute() argument 183 Output.push_back(getSingleAttrDiff(Attr, Name)); in diffAttribute() 187 void diffAttribute(std::string Name, std::vector<DiffOutput> &Output, in diffAttribute() argument 189 Output.push_back(getSingleAttrDiff(Val, Name, Order)); in diffAttribute() 194 std::vector<DiffOutput> Output; in getSingleIF() local 195 diffAttribute("Install Name", Output, in getSingleIF() 198 diffAttribute("Current Version", Output, in getSingleIF() 201 diffAttribute("Compatibility Version", Output, in getSingleIF() 204 diffAttribute("Swift ABI Version", Output, in getSingleIF() 207 diffAttribute("InstallAPI", Output, in getSingleIF() [all …]
|
| /openbsd-src/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-src/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-src/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-src/gnu/llvm/llvm/lib/Demangle/ |
| H A D | RustDemangle.cpp | 91 OutputBuffer Output; member in __anon0d5fe11e0111::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() 1064 static void removeNullBytes(OutputBuffer &Output, size_t StartIdx) { in removeNullBytes() argument 1065 char *Buffer = Output.getBuffer(); in removeNullBytes() 1067 char *End = Buffer + Output.getCurrentPosition(); in removeNullBytes() [all …]
|
| /openbsd-src/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-src/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-src/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-src/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-src/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-src/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-src/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
|