Home
last modified time | relevance | path

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

/external/lz4/programs/
Dlz4io.c76 #define MAGICNUMBER_SIZE 4 macro
418 unsigned long long compressedfilesize = MAGICNUMBER_SIZE; in LZ4IO_compressFilename_Legacy()
445 if (fwrite(out_buff, 1, MAGICNUMBER_SIZE, foutput) != MAGICNUMBER_SIZE) in LZ4IO_compressFilename_Legacy()
1081 { size_t inSize = MAGICNUMBER_SIZE; in LZ4IO_decompressLZ4F()
1147 unsigned char MNstore[MAGICNUMBER_SIZE], in LZ4IO_passThrough() argument
1152 unsigned long long total = MAGICNUMBER_SIZE; in LZ4IO_passThrough()
1155 if (fwrite(MNstore, 1, MAGICNUMBER_SIZE, foutput) != MAGICNUMBER_SIZE) { in LZ4IO_passThrough()
1213 unsigned char MNstore[MAGICNUMBER_SIZE]; in selectDecoder()
1225 size_t const nbReadBytes = fread(MNstore, 1, MAGICNUMBER_SIZE, finput); in selectDecoder()
1227 if (nbReadBytes != MAGICNUMBER_SIZE) in selectDecoder()
[all …]