Searched refs:inpBytes (Results 1 - 4 of 4) sorted by relevance

/external/lz4/examples/
H A DblockStreaming_lineByLine.c52 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength);
53 if (0 == inpBytes) break;
56 int inpBytes = 0; local
59 inpBytes = (int) strlen(inpPtr);
64 lz4Stream, inpPtr, cmpBuf, inpBytes);
70 inpOffset += inpBytes;
H A DHCStreaming_ringBuffer.c67 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); local
68 if (0 == inpBytes) break;
72 const int cmpBytes = LZ4_compressHC_continue(lz4Stream, inpPtr, cmpBuf, inpBytes);
78 inpOffset += inpBytes;
H A DblockStreaming_ringBuffer.c63 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); local
64 if (0 == inpBytes) break;
68 const int cmpBytes = LZ4_compress_continue(lz4Stream, inpPtr, cmpBuf, inpBytes);
73 inpOffset += inpBytes;
H A DblockStreaming_doubleBuffer.c46 const int inpBytes = (int) read_bin(inpFp, inpPtr, BLOCK_BYTES); local
47 if(0 == inpBytes) {
54 lz4Stream, inpPtr, cmpBuf, inpBytes);

Completed in 74 milliseconds