Lines Matching defs:streamPtr
860 LZ4_stream_t_internal *streamPtr = &LZ4_stream->internal_donotuse;
861 const BYTE * const dictEnd = streamPtr->dictionary
862 + streamPtr->dictSize;
866 if (streamPtr->initCheck) {
871 if ((streamPtr->dictSize > 0) && (smallest > dictEnd))
874 LZ4_renormDictT(streamPtr, smallest);
883 if ((sourceEnd > streamPtr->dictionary)
885 streamPtr->dictSize = (U32)(dictEnd - sourceEnd);
886 if (streamPtr->dictSize > 64 * KB)
887 streamPtr->dictSize = 64 * KB;
888 if (streamPtr->dictSize < 4)
889 streamPtr->dictSize = 0;
890 streamPtr->dictionary = dictEnd - streamPtr->dictSize;
898 if ((streamPtr->dictSize < 64 * KB) &&
899 (streamPtr->dictSize < streamPtr->currentOffset)) {
901 streamPtr, source, dest, inputSize,
906 streamPtr, source, dest, inputSize,
910 streamPtr->dictSize += (U32)inputSize;
911 streamPtr->currentOffset += (U32)inputSize;
919 if ((streamPtr->dictSize < 64 * KB) &&
920 (streamPtr->dictSize < streamPtr->currentOffset)) {
922 streamPtr, source, dest, inputSize,
927 streamPtr, source, dest, inputSize,
931 streamPtr->dictionary = (const BYTE *)source;
932 streamPtr->dictSize = (U32)inputSize;
933 streamPtr->currentOffset += (U32)inputSize;