Home | History | Annotate | Download | only in examples

Lines Matching refs:cmpBytes

53             const int cmpBytes = LZ4_compress_continue(
55 if(cmpBytes <= 0) {
58 write_int(outFp, cmpBytes);
59 write_bin(outFp, cmpBuf, (size_t) cmpBytes);
79 int cmpBytes = 0;
82 const size_t readCount0 = read_int(inpFp, &cmpBytes);
83 if(readCount0 != 1 || cmpBytes <= 0) {
87 const size_t readCount1 = read_bin(inpFp, cmpBuf, (size_t) cmpBytes);
88 if(readCount1 != (size_t) cmpBytes) {
96 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, BLOCK_BYTES);