Home
last modified time | relevance | path

Searched defs:Input (Results 1 – 25 of 132) sorted by relevance

123456

/openbsd/gnu/llvm/llvm/lib/Support/
H A DCompression.cpp46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress()
107 void zlib::compress(ArrayRef<uint8_t> Input, in compress()
123 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress()
135 Error zlib::decompress(ArrayRef<uint8_t> Input, in decompress()
147 void zlib::compress(ArrayRef<uint8_t> Input, in compress()
155 Error zlib::decompress(ArrayRef<uint8_t> Input, in decompress()
166 void zstd::compress(ArrayRef<uint8_t> Input, in compress()
182 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress()
195 Error zstd::decompress(ArrayRef<uint8_t> Input, in decompress()
207 void zstd::compress(ArrayRef<uint8_t> Input, in compress()
[all …]
H A DBase64.cpp37 llvm::Error llvm::decodeBase64(llvm::StringRef Input, in decodeBase64()
/openbsd/gnu/llvm/clang/lib/Driver/
H A DAction.cpp179 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) in BindArchAction()
336 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction()
352 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, in PrecompileJobAction()
365 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction()
370 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction()
375 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction()
380 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType) in BackendJobAction()
410 VerifyJobAction::VerifyJobAction(ActionClass Kind, Action *Input, in VerifyJobAction()
419 VerifyDebugInfoJobAction::VerifyDebugInfoJobAction(Action *Input, in VerifyDebugInfoJobAction()
425 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type) in VerifyPCHJobAction()
[all …]
H A DOffloadBundler.cpp233 virtual Error listBundleIDs(MemoryBuffer &Input) { in listBundleIDs()
246 Error forEachBundle(MemoryBuffer &Input, in forEachBundle()
340 Error ReadHeader(MemoryBuffer &Input) final { in ReadHeader()
409 ReadBundleStart(MemoryBuffer &Input) final { in ReadBundleStart()
416 Error ReadBundleEnd(MemoryBuffer &Input) final { in ReadBundleEnd()
568 ReadBundleStart(MemoryBuffer &Input) final { in ReadBundleStart()
726 ReadBundleStart(MemoryBuffer &Input) final { in ReadBundleStart()
748 Error ReadBundleEnd(MemoryBuffer &Input) final { in ReadBundleEnd()
884 MemoryBuffer &Input = **CodeOrErr; in ListBundleIDsInFile() local
937 auto Input = InputBuffers.begin(); in BundleFiles() local
[all …]
/openbsd/gnu/llvm/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp77 static void reportError(StringRef Input, std::error_code EC) { in reportError()
81 static void error(StringRef Input, Error EC) { in error()
109 template <typename T> T error(StringRef Input, Expected<T> EC) { in error()
115 template <typename T> T error(StringRef Input, ErrorOr<T> &&EC) { in error()
/openbsd/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceScriptCppFilter.cpp24 explicit Filter(StringRef Input) : Data(Input), DataLength(Input.size()) {} in Filter()
109 std::string filterCppOutput(StringRef Input) { return Filter(Input).run(); } in filterCppOutput()
H A DResourceScriptToken.cpp88 Tokenizer(StringRef Input) : Data(Input), DataLength(Input.size()), Pos(0) {} in Tokenizer()
363 Expected<std::vector<RCToken>> tokenizeRC(StringRef Input) { in tokenizeRC()
/openbsd/gnu/llvm/llvm/lib/DebugInfo/LogicalView/
H A DLVReaderHandler.cpp42 PdbOrObj &Input, StringRef FileFormatName, in createReader()
120 PdbOrObj Input = &Obj; in handleMach() local
140 if (PdbOrObj Input = dyn_cast<ObjectFile>(&Binary)) in handleObject() local
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DStringExtras.h58 inline StringRef toStringRef(ArrayRef<uint8_t> Input) { in toStringRef()
63 inline ArrayRef<uint8_t> arrayRefFromStringRef(StringRef Input) { in arrayRefFromStringRef()
170 inline void toHex(ArrayRef<uint8_t> Input, bool LowerCase, in toHex()
220 inline bool tryGetFromHex(StringRef Input, std::string &Output) { in tryGetFromHex()
255 inline std::string fromHex(StringRef Input) { in fromHex()
/openbsd/gnu/llvm/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp436 std::unique_ptr<lto::InputFile> Input(LTOModule::createInputFile( in listDependentLibraries() local
683 auto Input = loadInputFile(Buffer->getMemBufferRef()); in distributedIndexes() local
720 auto Input = loadInputFile(Buffer->getMemBufferRef()); in emitImports() local
747 auto Input = loadInputFile(Buffer->getMemBufferRef()); in promote() local
780 auto Input = loadInputFile(Buffer->getMemBufferRef()); in import() local
813 auto Input = loadInputFile(Buffer->getMemBufferRef()); in internalize() local
838 auto Input = loadInputFile(Buffer->getMemBufferRef()); in optimize() local
/openbsd/gnu/llvm/clang/include/clang/Driver/
H A DAction.h134 Action(ActionClass Kind, Action *Input, types::ID Type) in Action() function
136 Action(ActionClass Kind, Action *Input) in Action() function
229 const llvm::opt::Arg &Input; variable
447 void addHeaderInput(Action *Input) { getInputs().push_back(Input); } in addHeaderInput()
/openbsd/gnu/llvm/clang/lib/Driver/ToolChains/
H A DFlang.cpp23 static void addDashXForInput(const ArgList &Args, const InputInfo &Input, in addDashXForInput()
279 const InputInfo &Input = Inputs[0]; in ConstructJob() local
H A DInterfaceStubs.cpp49 for (const auto &Input : Inputs) { in ConstructJob() local
/openbsd/gnu/llvm/clang/lib/Tooling/Syntax/
H A DTokenBufferTokenManager.cpp17 std::unique_ptr<llvm::MemoryBuffer> Input) { in lexBuffer()
/openbsd/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h60 class Input; variable
/openbsd/gnu/llvm/llvm/tools/llvm-yaml-parser-fuzzer/
H A Dyaml-parser-fuzzer.cpp22 std::vector<uint8_t> Input(Data, Data + Size); in LLVMFuzzerTestOneInput() local
/openbsd/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSupport.cpp55 char *Input = Name.data(); in flattenedFilePath() local
/openbsd/gnu/llvm/clang/lib/ARCMigrate/
H A DARCMT.cpp236 CompilerInvocation &origCI, const FrontendInputFile &Input, in checkForManualIssues()
337 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, in applyTransforms()
383 CompilerInvocation &origCI, const FrontendInputFile &Input, in applyTransformations()
391 CompilerInvocation &origCI, const FrontendInputFile &Input, in migrateWithTemporaryFiles()
/openbsd/gnu/llvm/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp227 handleMakeDependencyToolResult(const std::string &Input, in handleMakeDependencyToolResult()
268 void mergeDeps(StringRef Input, FullDependenciesResult FDR, in mergeDeps()
398 const std::string &Input, in handleFullDependencyToolResult()
484 handleP1689DependencyToolResult(const std::string &Input, in handleP1689DependencyToolResult()
739 const tooling::CompileCommand *Input; in main() local
/openbsd/gnu/llvm/clang/tools/clang-fuzzer/handle-cxx/
H A Dhandle_cxx.cpp41 std::unique_ptr<llvm::MemoryBuffer> Input = in HandleCXX() local
/openbsd/gnu/llvm/llvm/tools/llvm-as-fuzzer/
H A Dllvm-as-fuzzer.cpp49 StringRef Input((const char *)Data, Size); in LLVMFuzzerTestOneInput() local
/openbsd/gnu/llvm/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h30 template <class T> T unwrapOrError(StringRef Input, Expected<T> EO) { in unwrapOrError()
/openbsd/gnu/llvm/clang/lib/Tooling/Transformer/
H A DParsing.cpp42 StringRef Input; member
267 Expected<RangeSelector> transformer::parseRangeSelector(llvm::StringRef Input) { in parseRangeSelector()
/openbsd/gnu/llvm/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h46 void Initialize(StringRef Input) { in Initialize()
/openbsd/gnu/usr.bin/perl/Porting/
H A Dbench.pl396 Input: label

123456