Home
last modified time | relevance | path

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

/external/lz4/examples/
DblockStreaming_lineByLine.c51 char* const inpPtr = &inpBuf[inpOffset]; in test_compress() local
56 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); in test_compress()
61 if (!fgets(inpPtr, (int) messageMaxBytes, inpFp)) in test_compress()
63 inpBytes = (int) strlen(inpPtr); in test_compress()
68 lz4Stream, inpPtr, cmpBuf, inpBytes, cmpBufBytes, 1); in test_compress()
DblockStreaming_doubleBuffer.c50 char* const inpPtr = inpBuf[inpBufIndex]; in test_compress() local
51 const int inpBytes = (int) read_bin(inpFp, inpPtr, BLOCK_BYTES); in test_compress()
59 lz4Stream, inpPtr, cmpBuf, inpBytes, sizeof(cmpBuf), 1); in test_compress()
DblockStreaming_ringBuffer.c61 char* const inpPtr = &inpBuf[inpOffset]; in test_compress() local
63 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); in test_compress()
69 …const int cmpBytes = LZ4_compress_fast_continue(lz4Stream, inpPtr, cmpBuf, inpBytes, CMPBUFSIZE, 0… in test_compress()
DHCStreaming_ringBuffer.c64 char* const inpPtr = &inpBuf[inpOffset]; in test_compress() local
66 const int inpBytes = (int) read_bin(inpFp, inpPtr, randomLength); in test_compress()
71 … const int cmpBytes = LZ4_compress_HC_continue(lz4Stream, inpPtr, cmpBuf, inpBytes, CMPBUFSIZE); in test_compress()