Lines Matching defs:iNext
1241 U32 iNext = 0;
1253 while (iNext + messageSize < testCompressedSize) {
1255 XXH64_update(&xxhOrig, testInput + iNext, messageSize);
1258 memcpy (ringBuffer + rNext, testInput + iNext, messageSize);
1277 iNext += messageSize;
1488 U32 iNext = 0;
1500 while (iNext + messageSize < testCompressedSize) {
1503 XXH64_update(&xxhOrig, testInput + iNext, messageSize);
1506 memcpy (ringBuffer + rNext, testInput + iNext, messageSize);
1529 iNext += messageSize;
1556 int iNext = 0;
1572 XXH64_update(&xxhOrig, testInput + iNext, (size_t)messageSize);
1575 compressedSize = LZ4_compress_HC_continue(&sHC, testInput + iNext, testCompressed, messageSize, testCompressedSize-ringBufferSize);
1598 iNext = BSIZE1+1;
1600 memcpy(testInput + iNext, testInput + (BSIZE1-65535), messageSize); /* will generate a match at max distance == 65535 */
1605 XXH64_update(&xxhOrig, testInput + iNext, (size_t)messageSize);
1608 compressedSize = LZ4_compress_HC_continue(&sHC, testInput + iNext, testCompressed, messageSize, testCompressedSize-ringBufferSize);
1622 if (crcOrig != crcNew) FUZ_findDiff(testInput + iNext, ringBufferSafe + dNext);
1631 if (crcOrig != crcNew) FUZ_findDiff(testInput + iNext, ringBufferFast + dNext);
1640 iNext = (FUZ_rand(&randState) & 65535);