Home
last modified time | relevance | path

Searched refs:inpOffset (Results 1 – 3 of 3) sorted by relevance

/third_party/lz4/examples/
DblockStreaming_ringBuffer.c54 int inpOffset = 0; in test_compress() local
58 char* const inpPtr = &inpBuf[inpOffset]; in test_compress()
71 inpOffset += inpBytes; in test_compress()
74 if(inpOffset >= RING_BUFFER_BYTES - MESSAGE_MAX_BYTES) inpOffset = 0; in test_compress()
DblockStreaming_lineByLine.c47 int inpOffset = 0; in test_compress() local
51 char* const inpPtr = &inpBuf[inpOffset]; in test_compress()
74 inpOffset += inpBytes; in test_compress()
75 if ((size_t)inpOffset >= ringBufferBytes - messageMaxBytes) inpOffset = 0; in test_compress()
DHCStreaming_ringBuffer.c63 int inpOffset = 0; in test_compress() local
67 char* const inpPtr = &inpBuf[inpOffset]; in test_compress()
80 inpOffset += inpBytes; in test_compress()
83 if(inpOffset >= RING_BUFFER_BYTES - MESSAGE_MAX_BYTES) in test_compress()
84 inpOffset = 0; in test_compress()