Searched refs:magic (Results 1 – 4 of 4) sorted by relevance
122 char magic[sizeof(kTestMagic)]; in test_decompress() local123 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()
44 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…
304 static int LZ4IO_isSkippableMagicNumber(unsigned int magic) { in LZ4IO_isSkippableMagicNumber() argument305 return (magic & LZ4IO_SKIPPABLEMASK) == LZ4IO_SKIPPABLE0; in LZ4IO_isSkippableMagicNumber()
338 (without including the magic number nor the size field itself).