Searched refs:inpBytes (Results 1 - 4 of 4) sorted by relevance
/external/lz4/examples/ |
H A D | blockStreaming_lineByLine.c | 52 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 D | HCStreaming_ringBuffer.c | 67 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 D | blockStreaming_ringBuffer.c | 63 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 D | blockStreaming_doubleBuffer.c | 46 const int inpBytes = (int) read_bin(inpFp, inpPtr, BLOCK_BYTES); local 47 if(0 == inpBytes) { 54 lz4Stream, inpPtr, cmpBuf, inpBytes);
|
Completed in 74 milliseconds