Home
last modified time | relevance | path

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

12345

/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DCompression.cpp46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress() argument
58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() argument
69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() argument
81 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() argument
107 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level) compress() argument
123 decompress(ArrayRef<uint8_t> Input,uint8_t * Output,size_t & UncompressedSize) decompress() argument
135 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & Output,size_t UncompressedSize) decompress() argument
147 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level) compress() argument
151 decompress(ArrayRef<uint8_t> Input,uint8_t * UncompressedBuffer,size_t & UncompressedSize) decompress() argument
155 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & UncompressedBuffer,size_t UncompressedSize) decompress() argument
166 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level) compress() argument
182 decompress(ArrayRef<uint8_t> Input,uint8_t * Output,size_t & UncompressedSize) decompress() argument
195 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & Output,size_t UncompressedSize) decompress() argument
207 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level) compress() argument
211 decompress(ArrayRef<uint8_t> Input,uint8_t * Output,size_t & UncompressedSize) decompress() argument
215 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & Output,size_t UncompressedSize) decompress() argument
[all...]
H A DBase64.cpp37 llvm::Error llvm::decodeBase64(llvm::StringRef Input, in decodeBase64()
/freebsd-src/contrib/llvm-project/clang/lib/Driver/
H A DAction.cpp181 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) in BindArchAction()
338 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction()
346 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction()
351 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction()
354 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, in PrecompileJobAction()
367 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction()
372 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction()
377 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction()
382 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType) in BackendJobAction()
387 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType) in AssembleJobAction()
[all …]
H A DOffloadBundler.cpp210 listBundleIDs(MemoryBuffer & Input) listBundleIDs() argument
223 getBundleIDs(MemoryBuffer & Input,std::set<StringRef> & BundleIds) getBundleIDs() argument
237 forEachBundle(MemoryBuffer & Input,std::function<Error (const BundleInfo &)> Func) forEachBundle() argument
260 listBundleIDsCallback(MemoryBuffer & Input,const BundleInfo & Info) listBundleIDsCallback() argument
331 ReadHeader(MemoryBuffer & Input) ReadHeader() argument
398 ReadBundleStart(MemoryBuffer & Input) ReadBundleStart() argument
405 ReadBundleEnd(MemoryBuffer & Input) ReadBundleEnd() argument
410 ReadBundle(raw_ostream & OS,MemoryBuffer & Input) ReadBundle() argument
464 WriteBundle(raw_ostream & OS,MemoryBuffer & Input) WriteBundle() argument
562 ReadHeader(MemoryBuffer & Input) ReadHeader() argument
565 ReadBundleStart(MemoryBuffer & Input) ReadBundleStart() argument
582 ReadBundleEnd(MemoryBuffer & Input) ReadBundleEnd() argument
584 ReadBundle(raw_ostream & OS,MemoryBuffer & Input) ReadBundle() argument
675 WriteBundle(raw_ostream & OS,MemoryBuffer & Input) WriteBundle() argument
720 ReadHeader(MemoryBuffer & Input) ReadHeader() argument
723 ReadBundleStart(MemoryBuffer & Input) ReadBundleStart() argument
745 ReadBundleEnd(MemoryBuffer & Input) ReadBundleEnd() argument
759 ReadBundle(raw_ostream & OS,MemoryBuffer & Input) ReadBundle() argument
787 WriteBundle(raw_ostream & OS,MemoryBuffer & Input) WriteBundle() argument
800 listBundleIDsCallback(MemoryBuffer & Input,const BundleInfo & Info) listBundleIDsCallback() argument
889 compress(const llvm::MemoryBuffer & Input,bool Verbose) compress() argument
960 decompress(const llvm::MemoryBuffer & Input,bool Verbose) decompress() argument
1215 auto Input = InputBuffers.begin(); BundleFiles() local
1269 MemoryBuffer &Input = **DecompressedBufferOrErr; UnbundleFiles() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h58 inline StringRef toStringRef(ArrayRef<uint8_t> Input) { in toStringRef() argument
61 inline StringRef toStringRef(ArrayRef<char> Input) { in toStringRef() argument
67 inline ArrayRef<CharT> arrayRefFromStringRef(StringRef Input) { in arrayRefFromStringRef() argument
183 toHex(ArrayRef<uint8_t> Input,bool LowerCase,SmallVectorImpl<char> & Output) toHex() argument
233 tryGetFromHex(StringRef Input,std::string & Output) tryGetFromHex() argument
268 fromHex(StringRef Input) fromHex() argument
[all...]
H A DPriorityWorklist.h113 insert(SequenceT &&Input) { in insert()
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/
H A DLVReaderHandler.cpp41 PdbOrObj &Input, StringRef FileFormatName, in createReader() argument
224 PdbOrObj Input = &Obj; handleMach() local
244 if (PdbOrObj Input = dyn_cast<ObjectFile>(&Binary)) handleObject() local
268 PdbOrObj Input = &PdbSession->getPDBFile(); handleObject() local
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokenBufferTokenManager.cpp17 std::unique_ptr<llvm::MemoryBuffer> Input) { in lexBuffer()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h64 class Input; variable
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp435 std::unique_ptr<lto::InputFile> Input(LTOModule::createInputFile( listDependentLibraries() local
680 auto Input = loadInputFile(Buffer->getMemBufferRef()); distributedIndexes() local
717 auto Input = loadInputFile(Buffer->getMemBufferRef()); emitImports() local
744 auto Input = loadInputFile(Buffer->getMemBufferRef()); promote() local
777 auto Input = loadInputFile(Buffer->getMemBufferRef()); import() local
810 auto Input = loadInputFile(Buffer->getMemBufferRef()); internalize() local
835 auto Input = loadInputFile(Buffer->getMemBufferRef()); optimize() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h29 template <class T> T unwrapOrError(StringRef Input, Expected<T> EO) { in unwrapOrError() argument
/freebsd-src/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DInterfaceStubs.cpp49 for (const auto &Input : Inputs) { in ConstructJob() local
H A DFlang.cpp29 /// Add -x lang to \p CmdArgs for \p Input. in addDashXForInput() argument
615 renderRemarksOptions(const ArgList & Args,ArgStringList & CmdArgs,const InputInfo & Input) renderRemarksOptions() argument
700 const InputInfo &Input = Inputs[0]; ConstructJob() local
[all...]
H A DSPIRV.cpp23 constructTranslateCommand(Compilation & C,const Tool & T,const JobAction & JA,const InputInfo & Output,const InputInfo & Input,const llvm::opt::ArgStringList & Args) constructTranslateCommand() argument
H A DHaiku.cpp89 auto Input = llvm::find_if( ConstructJob() local
H A DHIPAMD.cpp87 for (auto Input : Inputs) constructLlvmLinkCommand() local
175 for (auto Input : Inputs) constructLldCommand() local
/freebsd-src/contrib/llvm-project/lld/MachO/
H A DDriver.h97 Input = 0x10, enumerator
/freebsd-src/contrib/llvm-project/clang/include/clang/Driver/
H A DAction.h135 Action(ActionClass Kind, Action *Input, types::ID Type) in Action() function
137 Action(ActionClass Kind, Action *Input) in Action() function
230 const llvm::opt::Arg &Input; variable
448 void addHeaderInput(Action *Input) { getInputs().push_back(Input); } in addHeaderInput()
/freebsd-src/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h46 void Initialize(StringRef Input) { in Initialize()
/freebsd-src/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp27 Reader::Reader(StringRef Input) : Reader({Input, "MsgPack"}) {} in Reader()
/freebsd-src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DARCMT.cpp236 CompilerInvocation &origCI, const FrontendInputFile &Input, in checkForManualIssues() argument
337 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, in applyTransforms() argument
383 CompilerInvocation &origCI, const FrontendInputFile &Input, in applyTransformations() argument
391 CompilerInvocation &origCI, const FrontendInputFile &Input, in migrateWithTemporaryFiles() argument
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp42 StringRef Input; member
267 Expected<RangeSelector> transformer::parseRangeSelector(llvm::StringRef Input) { in parseRangeSelector()
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp163 const MachineOperand &Input = Phi.getOperand(1); runOnMachineFunction() local
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp372 std::unique_ptr<InputFile> Input = run() local
456 std::unique_ptr<InputFile> Input = dumpSymtab() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSupport.cpp55 char *Input = Name.data(); in flattenedFilePath() local

12345