Home
last modified time | relevance | path

Searched refs:InputBuffer (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DLZMA.cpp24 getUncompressedSize(llvm::ArrayRef<uint8_t> InputBuffer) { in getUncompressedSize() argument
28 llvm::Error uncompress(llvm::ArrayRef<uint8_t> InputBuffer, in uncompress() argument
67 getUncompressedSize(llvm::ArrayRef<uint8_t> InputBuffer) {
69 if (InputBuffer.size() < LZMA_STREAM_HEADER_SIZE) {
74 InputBuffer.size(), LZMA_STREAM_HEADER_SIZE);
79 &opts, InputBuffer.take_back(LZMA_STREAM_HEADER_SIZE).data());
85 if (InputBuffer.size() < (opts.backward_size + LZMA_STREAM_HEADER_SIZE)) {
99 InputBuffer.take_back(LZMA_STREAM_HEADER_SIZE + opts.backward_size)
101 &inpos, InputBuffer.size());
118 llvm::Error uncompress(llvm::ArrayRef<uint8_t> InputBuffer,
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DCompression.cpp49 Error zlib::compress(StringRef InputBuffer, in compress() argument
51 unsigned long CompressedSize = ::compressBound(InputBuffer.size()); in compress()
55 (const Bytef *)InputBuffer.data(), InputBuffer.size(), Level); in compress()
63 Error zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer, in uncompress() argument
67 (const Bytef *)InputBuffer.data(), InputBuffer.size()); in uncompress()
74 Error zlib::uncompress(StringRef InputBuffer, in uncompress() argument
79 uncompress(InputBuffer, UncompressedBuffer.data(), UncompressedSize); in uncompress()
90 Error zlib::compress(StringRef InputBuffer, in compress() argument
94 Error zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer, in uncompress() argument
98 Error zlib::uncompress(StringRef InputBuffer, in uncompress() argument
H A DYAMLParser.cpp508 MemoryBufferRef InputBuffer; member in llvm::yaml::Scanner
848 InputBuffer = Buffer; in init()
849 Current = InputBuffer.getBufferStart(); in init()
850 End = InputBuffer.getBufferEnd(); in init()
1846 Stream::Stream(MemoryBufferRef InputBuffer, SourceMgr &SM, bool ShowColors, in Stream() argument
1848 : scanner(new Scanner(InputBuffer, SM, ShowColors, EC)), CurrentDoc() {} in Stream()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompression.h32 Error compress(StringRef InputBuffer, SmallVectorImpl<char> &CompressedBuffer,
35 Error uncompress(StringRef InputBuffer, char *UncompressedBuffer,
38 Error uncompress(StringRef InputBuffer,
H A DYAMLParser.h92 Stream(MemoryBufferRef InputBuffer, SourceMgr &, bool ShowColors = true,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DLZMA.h25 getUncompressedSize(llvm::ArrayRef<uint8_t> InputBuffer);
27 llvm::Error uncompress(llvm::ArrayRef<uint8_t> InputBuffer,
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbinput.c168 char *InputBuffer);
794 char *InputBuffer) in AcpiDbGetLine() argument
803 InputBuffer)) in AcpiDbGetLine()
894 char *InputBuffer, in AcpiDbCommandDispatch() argument
915 ParamCount = AcpiDbGetLine (InputBuffer); in AcpiDbCommandDispatch()
925 AcpiDbAddToHistory (InputBuffer); in AcpiDbCommandDispatch()
/freebsd-13.1/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp23 Reader::Reader(MemoryBufferRef InputBuffer) in Reader() argument
24 : InputBuffer(InputBuffer), Current(InputBuffer.getBufferStart()), in Reader()
25 End(InputBuffer.getBufferEnd()) {} in Reader()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h103 Reader(MemoryBufferRef InputBuffer);
127 MemoryBufferRef InputBuffer;
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp377 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = in printLineInfoForInput() local
379 if (std::error_code EC = InputBuffer.getError()) in printLineInfoForInput()
383 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef())); in printLineInfoForInput()
513 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = in executeInput() local
515 if (std::error_code EC = InputBuffer.getError()) in executeInput()
518 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef())); in executeInput()
908 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = in linkAndVerify() local
911 if (std::error_code EC = InputBuffer.getError()) in linkAndVerify()
915 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef())); in linkAndVerify()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DTextAPIReader.h25 get(MemoryBufferRef InputBuffer);
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dacdebug.h539 char *InputBuffer,
/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp1110 TextAPIReader::get(MemoryBufferRef InputBuffer) { in get() argument
1112 Ctx.Path = std::string(InputBuffer.getBufferIdentifier()); in get()
1113 yaml::Input YAMLIn(InputBuffer.getBuffer(), &Ctx, DiagHandler, &Ctx); in get()