Home
last modified time | relevance | path

Searched refs:magic (Results 1 – 4 of 4) sorted by relevance

/lz4-3.4.0-2.7.6/examples/
DdictionaryRandomAccess.c122 char magic[sizeof(kTestMagic)]; in test_decompress() local
123 size_t read = read_bin(inpFp, magic, sizeof(magic)); in test_decompress()
124 if (read != sizeof(magic)) { exit(1); } in test_decompress()
125 if (memcmp(kTestMagic, magic, sizeof(magic))) { exit(2); } in test_decompress()
DdictionaryRandomAccess.md44 After writing the magic bytes `TEST` and then the compressed blocks, write out the jump table.
47 …total number of bytes written after writing out `Block#K` *including* the magic bytes for simplici…
/lz4-3.4.0-2.7.6/programs/
Dlz4io.c304 static int LZ4IO_isSkippableMagicNumber(unsigned int magic) { in LZ4IO_isSkippableMagicNumber() argument
305 return (magic & LZ4IO_SKIPPABLEMASK) == LZ4IO_SKIPPABLE0; in LZ4IO_isSkippableMagicNumber()
/lz4-3.4.0-2.7.6/doc/
Dlz4_Frame_format.md338 (without including the magic number nor the size field itself).