Searched refs:Compressed (Results 1 - 7 of 7) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/tests/
H A Dcompression.cpp16 uint8_t Compressed[1]; local
19 EXPECT_EQ(1u, pack(&Uncompressed, 1u, Compressed, sizeof(Compressed)));
20 EXPECT_EQ(Compressed[0], 0x00);
23 EXPECT_EQ(1u, pack(&Uncompressed, 1u, Compressed, sizeof(Compressed)));
24 EXPECT_EQ(Compressed[0], 0x02); // +1 => 2 in zigzag.
27 EXPECT_EQ(1u, pack(&Uncompressed, 1u, Compressed, sizeof(Compressed)));
28 EXPECT_EQ(Compressed[
32 uint8_t Compressed[sizeof(uintptr_t) + 1]; local
65 uint8_t Compressed[10]; local
113 uint8_t Compressed[2]; local
125 uint8_t Compressed[2]; local
142 uint8_t *Compressed = static_cast<uint8_t *>(alloca(CompressedBufferSize)); local
162 uint8_t Compressed[] = {0x00, 0xaa, 0xaf, 0xd0, 0xda, 0x04}; local
171 uint8_t Compressed[] = {0x00, 0xab, 0xaf, 0xd0, 0xda, 0x04}; local
218 uint8_t Compressed[kBytesForLargestVarInt + 1]; local
230 uint8_t Compressed[] = {0x80, 0x00}; local
242 uint8_t Compressed[3 * kBytesForLargestVarInt]; local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVMatInt.cpp22 bool Compressed = false; local
26 Compressed = true;
31 Compressed = isInt<6>(Instr.getImm());
39 if (!Compressed)
/openbsd-current/gnu/llvm/llvm/lib/MC/
H A DELFObjectWriter.cpp886 SmallVector<uint8_t, 128> Compressed; local
899 Compressed); local
900 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed,
910 W.OS << toStringRef(Compressed);
/openbsd-current/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/
H A DAnyUncompress.pm583 To read the contents of the file C<file1.txt.Compressed> and write the
590 my $input = "file1.txt.Compressed";
603 my $input = IO::File->new( "<file1.txt.Compressed" )
604 or die "Cannot open 'file1.txt.Compressed': $!\n" ;
609 To uncompress all files in the directory "/my/home" that match "*.txt.Compressed" and store the compressed data in the same directory
615 anyuncompress '</my/home/*.txt.Compressed>' => '</my/home/#1.txt>'
624 for my $input ( glob "/my/home/*.txt.Compressed" )
627 $output =~ s/.Compressed// ;
H A DAnyInflate.pm426 To read the contents of the file C<file1.txt.Compressed> and write the
433 my $input = "file1.txt.Compressed";
446 my $input = IO::File->new( "<file1.txt.Compressed" )
447 or die "Cannot open 'file1.txt.Compressed': $!\n" ;
452 To uncompress all files in the directory "/my/home" that match "*.txt.Compressed" and store the compressed data in the same directory
458 anyinflate '</my/home/*.txt.Compressed>' => '</my/home/#1.txt>'
467 for my $input ( glob "/my/home/*.txt.Compressed" )
470 $output =~ s/.Compressed// ;
960 See L<IO::Compress::FAQ|IO::Compress::FAQ/"Compressed files and Net::FTP">
/openbsd-current/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp439 ArrayRef<uint8_t> Compressed = local
461 if (Error E = compression::decompress(Type, Compressed, Decompressed,
/openbsd-current/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp1700 bool Compressed) {
1704 Abbrev->Add(BitCodeAbbrevOp(Compressed ? SM_SLOC_BUFFER_BLOB_COMPRESSED
1706 if (Compressed)
1699 CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream, bool Compressed) argument

Completed in 102 milliseconds