Home
last modified time | relevance | path

Searched refs:decompress (Results 1 – 25 of 49) sorted by relevance

12

/llvm-project/llvm/lib/Support/
H A DCompression.cpp58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() function in compression
62 return zlib::decompress(Input, Output, UncompressedSize); in decompress()
64 return zstd::decompress(Input, Output, UncompressedSize); in decompress()
69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() function in compression
74 return zlib::decompress(Input, Output, UncompressedSize); in decompress()
76 return zstd::decompress(Input, Output, UncompressedSize); in decompress()
81 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() function in compression
84 return decompress(formatFor(T), Input, Output, UncompressedSize); in decompress()
123 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress() function in zlib
135 Error zlib::decompress(ArrayRe function in zlib
151 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *UncompressedBuffer, decompress() function in zlib
155 Error zlib::decompress(ArrayRef<uint8_t> Input, decompress() function in zlib
204 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, decompress() function in zstd
217 Error zstd::decompress(ArrayRef<uint8_t> Input, decompress() function in zstd
234 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, decompress() function in zstd
238 Error zstd::decompress(ArrayRef<uint8_t> Input, decompress() function in zstd
[all...]
/llvm-project/llvm/include/llvm/Support/
H A DCompression.h47 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,
120 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
122 Error decompress(Format F, ArrayRef<uint8_t> Input,
124 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
/llvm-project/llvm/unittests/Support/
H A DCompressionTest.cpp32 Error E = zlib::decompress(Compressed, Uncompressed, Input.size()); in testZlibCompression()
37 E = compression::decompress(DebugCompressionType::Zlib, Compressed, in testZlibCompression()
44 E = zlib::decompress(Compressed, Uncompressed, Input.size() - 1); in testZlibCompression()
77 Error E = zstd::decompress(Compressed, Uncompressed, Input.size()); in testZstdCompression()
82 E = compression::decompress(DebugCompressionType::Zstd, Compressed, in testZstdCompression()
89 E = zstd::decompress(Compressed, Uncompressed, Input.size() - 1); in testZstdCompression()
/llvm-project/clang-tools-extra/clangd/index/dex/
H A DPostingList.cpp28 DecompressedChunk = CurrentChunk->decompress(); in ChunkIterator()
79 for (const DocID Doc : C.decompress()) { in dump()
96 DecompressedChunk = CurrentChunk->decompress(); in normalizeCursor()
108 DecompressedChunk = CurrentChunk->decompress(); in advanceToChunk()
204 llvm::SmallVector<DocID, Chunk::PayloadSize + 1> Chunk::decompress() const { in decompress() function in clang::clangd::dex::Chunk
H A DPostingList.h46 llvm::SmallVector<DocID, PayloadSize + 1> decompress() const;
/llvm-project/utils/bazel/third_party_build/
H A Dzstd.BUILD30 "lib/decompress/*.c",
31 "lib/decompress/*.h",
32 "lib/decompress/*.S",
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dcompress-debug-sections-zstd.test6 # RUN: llvm-objcopy --decompress-debug-sections %t-zstd %t-de
40 # RUN: llvm-objcopy --decompress-debug-sections %t32-zstd %t32-de
44 # RUN: not llvm-objcopy --decompress-debug-sections %t-corrupted /dev/null 2>&1 | FileCheck %s -DFI…
46 # ERR: error: '[[FILE]]': failed to decompress section '.debug_info': Src size is incorrect
H A Dcompress-and-decompress-debug-sections-error.test4 # RUN: not llvm-objcopy --compress-debug-sections=zlib --decompress-debug-sections %t.o 2>&1 | File…
6 # CHECK: cannot specify both --compress-debug-sections and --decompress-debug-sections
H A Ddecompress-debug-sections-unsupported-zlib.test3 # RUN: not llvm-objcopy --decompress-debug-sections %t /dev/null 2>&1 | FileCheck %s -DFILE=%t
5 # CHECK: error: '[[FILE]]': failed to decompress section '.debug_info': LLVM was not built with LLV…
H A Dcompress-debug-sections-zlib.test6 # RUN: llvm-objcopy --decompress-debug-sections %t-zlib.o %t-un.o
35 # RUN: not llvm-objcopy --decompress-debug-sections %t-corrupted /dev/null 2>&1 | FileCheck %s -DFI…
37 # ERR: error: '[[FILE]]': failed to decompress section '.debug_info': zlib error: Z_DATA_ERROR
H A Ddecompress-debug-sections-err.test3 # RUN: not llvm-objcopy --decompress-debug-sections %t /dev/null 2>&1 | FileCheck %s -DFILE=%t
5 # CHECK: error: '[[FILE]]': --decompress-debug-sections: ch_type (3) of section '.debug_info'…
H A Dcompress-debug-sections.test9 # RUN: llvm-objcopy --decompress-debug-sections %tz.o %t2.o
H A Dcompress-debug-sections-groups.test14 # RUN: llvm-objcopy --decompress-debug-sections %t-compressed.o %t-decompressed.o
/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h35 return decompress({(uint8_t *)Out.data(), (size_t)DecompressedSize}); in resizeAndDecompress()
39 Error decompress(MutableArrayRef<uint8_t> Output);
/llvm-project/llvm/test/tools/llvm-readobj/ELF/
H A Ddecompress-zstd.test2 ## Test --decompress/-z for zstd.
7 # RUN: llvm-readobj --decompress -p .strings %t | FileCheck %s --check-prefix=STR
H A Ddecompress-zlib.test2 ## Test --decompress/-z.
7 # RUN: llvm-readobj --decompress -p .strings -p .not_null_terminated %t | FileCheck %s --check-pref…
/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp66 Error Decompressor::decompress(MutableArrayRef<uint8_t> Output) { in decompress() function in Decompressor
67 return compression::decompress(CompressionType, in decompress()
/llvm-project/lld/test/ELF/
H A Dcompressed-input-err.s14 ## Check we are able to report zlib decompress errors.
15 # CHECK: error: {{.*}}.o:(.debug_info): decompress failed: zlib error: Z_DATA_ERROR
H A Dcompress-debug-sections-zstd.s19 # RUN: llvm-objcopy --decompress-debug-sections %t.so
/llvm-project/llvm/test/MC/ELF/
H A Dcompress-debug-sections-zstd.s22 ## The compress/decompress round trip should be identical to the uncompressed output.
24 # RUN: llvm-objcopy --decompress-debug-sections %t %t.decom
H A Dcompress-debug-sections-zlib.s135 # llvm-dwarfdump tool will be able to decompress data back and dump it. Data sample
/llvm-project/polly/lib/External/isl/
H A Disl_scheduler.c500 isl_pw_multi_aff_free(node->decompress); in clear_node()
794 __isl_take isl_pw_multi_aff *decompress) in compress_node() argument
801 node->decompress = decompress; in compress_node()
808 node->decompress = isl_pw_multi_aff_pullback_pw_multi_aff( in compress_node()
809 node->decompress, decompress); in compress_node()
812 if (!node->hull || !node->compress || !node->decompress) in compress_node()
846 isl_pw_multi_aff *decompress, *pma; in project_out_fixed() local
858 decompress = isl_pw_multi_aff_from_multi_pw_aff(mpa); in project_out_fixed()
864 decompress = isl_pw_multi_aff_reset_space(decompress, space); in project_out_fixed()
866 isl_pw_multi_aff_copy(decompress), isl_multi_aff_copy(compress)); in project_out_fixed()
[all …]
/llvm-project/llvm/test/DebugInfo/
H A Ddwarfdump-decompression-corrupt.test6 CHECK: error: failed to decompress '', corrupted compressed section header
H A Ddwarfdump-decompression-error.test15 CHECK: error: failed to decompress '.debug_info', zlib error: Z_DATA_ERROR
/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td24 def decompress : FF<"decompress", "Dump decompressed section content when used with -x or -p">;
143 def : F<"z", "Alias for --decompress">, Alias<decompress>;

12