Lines Matching refs:iSize
247 size_t iSize = 1; in basicTests() local
249 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
252 ip += iSize; in basicTests()
299 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1; in basicTests() local
301 if (iSize > (size_t)(iend-ip)) iSize = iend-ip; in basicTests()
303 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
306 ip += iSize; in basicTests()
457 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBitsSeg)-1)) + 1; in fuzzerTests() local
458 size_t oSize = LZ4F_compressBound(iSize, prefsPtr); in fuzzerTests()
460 if (iSize > (size_t)(iend-ip)) iSize = iend-ip; in fuzzerTests()
463 result = LZ4F_compressUpdate(cCtx, op, oSize, ip, iSize, &cOptions); in fuzzerTests()
466 ip += iSize; in fuzzerTests()
494 size_t iSize = (FUZ_rand(&randState) & ((1<<nbBitsI)-1)) + 1; in fuzzerTests() local
496 if (iSize > (size_t)(iend-ip)) iSize = iend-ip; in fuzzerTests()
501 result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions); in fuzzerTests()
508 ip += iSize; in fuzzerTests()