Searched refs:inpPtr (Results 1 – 4 of 4) sorted by relevance
/external/lz4/examples/ |
D | blockStreaming_lineByLine.c | 47 char* const inpPtr = &inpBuf[inpOffset]; in test_compress() local 52 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); in test_compress() 57 if (!fgets(inpPtr, (int) messageMaxBytes, inpFp)) in test_compress() 59 inpBytes = (int) strlen(inpPtr); in test_compress() 64 lz4Stream, inpPtr, cmpBuf, inpBytes); in test_compress()
|
D | blockStreaming_doubleBuffer.c | 45 char* const inpPtr = inpBuf[inpBufIndex]; in test_compress() local 46 const int inpBytes = (int) read_bin(inpFp, inpPtr, BLOCK_BYTES); in test_compress() 54 lz4Stream, inpPtr, cmpBuf, inpBytes); in test_compress()
|
D | blockStreaming_ringBuffer.c | 61 char* const inpPtr = &inpBuf[inpOffset]; in test_compress() local 63 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); in test_compress() 68 const int cmpBytes = LZ4_compress_continue(lz4Stream, inpPtr, cmpBuf, inpBytes); in test_compress()
|
D | HCStreaming_ringBuffer.c | 65 char* const inpPtr = &inpBuf[inpOffset]; in test_compress() local 67 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); in test_compress() 72 const int cmpBytes = LZ4_compressHC_continue(lz4Stream, inpPtr, cmpBuf, inpBytes); in test_compress()
|