Home
last modified time | relevance | path

Searched refs:Decompressor (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DDecompressor.cpp20 Expected<Decompressor> Decompressor::create(StringRef Name, StringRef Data, in create()
25 Decompressor D(Data); in create()
33 Decompressor::Decompressor(StringRef Data) in Decompressor() function in Decompressor
36 Error Decompressor::consumeCompressedGnuHeader() { in consumeCompressedGnuHeader()
51 Error Decompressor::consumeCompressedZLibHeader(bool Is64Bit, in consumeCompressedZLibHeader()
75 bool Decompressor::isGnuStyle(StringRef Name) { in isGnuStyle()
79 bool Decompressor::isCompressed(const object::SectionRef &Section) { in isCompressed()
91 bool Decompressor::isCompressedELFSection(uint64_t Flags, StringRef Name) { in isCompressedELFSection()
95 Error Decompressor::decompress(MutableArrayRef<char> Buffer) { in decompress()
DCMakeLists.txt8 Decompressor.cpp
/third_party/zlib/contrib/ada/
Dbuffer_demo.adb69 Decompressor : Filter_Type; variable
80 Inflate_Init (Decompressor);
84 (Decompressor,
89 (Total_Out (Decompressor) + 1 .. Uncompressed_Data'Last),
94 ("Total in : " & Count'Image (Total_In (Decompressor)) &
95 ", out : " & Count'Image (Total_Out (Decompressor)));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DDecompressor.h20 class Decompressor {
27 static Expected<Decompressor> create(StringRef Name, StringRef Data,
54 Decompressor(StringRef Data);
/third_party/python/Modules/clinic/
D_lzmamodule.c.h91 _lzma_LZMADecompressor_decompress_impl(Decompressor *self, Py_buffer *data,
95 _lzma_LZMADecompressor_decompress(Decompressor *self, PyObject *const *args, Py_ssize_t nargs, PyOb… in _lzma_LZMADecompressor_decompress()
167 _lzma_LZMADecompressor___init___impl(Decompressor *self, int format,
208 …return_value = _lzma_LZMADecompressor___init___impl((Decompressor *)self, format, memlimit, filter… in _lzma_LZMADecompressor___init__()
/third_party/skia/third_party/externals/brotli/python/
Dbrotli.py23 Decompressor = _brotli.Decompressor variable
/third_party/python/Modules/
D_lzmamodule.c125 } Decompressor; typedef
929 decompress_buf(Decompressor *d, Py_ssize_t max_length) in decompress_buf()
987 decompress(Decompressor *d, uint8_t *data, size_t len, Py_ssize_t max_length) in decompress()
1132 _lzma_LZMADecompressor_decompress_impl(Decompressor *self, Py_buffer *data, in _lzma_LZMADecompressor_decompress_impl()
1192 _lzma_LZMADecompressor___init___impl(Decompressor *self, int format, in _lzma_LZMADecompressor___init___impl()
1293 Decompressor_dealloc(Decompressor *self) in Decompressor_dealloc()
1309 Decompressor_traverse(Decompressor *self, visitproc visit, void *arg) in Decompressor_traverse()
1333 {"check", T_INT, offsetof(Decompressor, check), READONLY,
1335 {"eof", T_BOOL, offsetof(Decompressor, eof), READONLY,
1337 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
[all …]
/third_party/skia/third_party/externals/brotli/python/tests/
Ddecompressor_test.py22 self.decompressor = brotli.Decompressor()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp1539 if (!Decompressor::isCompressed(Sec)) in maybeDecompress()
1542 Expected<Decompressor> Decompressor = in maybeDecompress() local
1543 Decompressor::create(Name, Data, IsLittleEndian, AddressSize == 8); in maybeDecompress()
1544 if (!Decompressor) in maybeDecompress()
1545 return Decompressor.takeError(); in maybeDecompress()
1548 if (auto Err = Decompressor->resizeAndDecompress(Out)) in maybeDecompress()
/third_party/zlib/contrib/
DREADME.contrib12 Decompressor for output of PKWare Data Compression Library (DCL)
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_texture_compression_bptc.txt844 RESOLVED: Decompressor will never generate them. Compressor should
/third_party/openGLES/extensions/ARB/
DARB_texture_compression_bptc.txt855 RESOLVED: Decompressor will never generate them. Compressor should
/third_party/node/doc/api/
Dzlib.md477 #### Decompressor options
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/
DAndroid.bp529 "llvm/lib/Object/Decompressor.cpp",
DBUILD.gn645 "llvm/lib/Object/Decompressor.cpp",
DCMakeLists.txt531 ${LLVM_DIR}/lib/Object/Decompressor.cpp
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst4112 bz2 and lzma: When Decompressor.__init__() is called twice, free the old