Lines Matching refs:oSize
257 size_t decResult, oSize = COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
259 CHECK_V(decResult, LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL)); in basicTests()
267 op += oSize; in basicTests()
268 oSize = (size_t)(oend-op); in basicTests()
269 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests()
271 op += oSize; in basicTests()
277 { size_t oSize = 0; in basicTests() local
283 CHECK( LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL) ); in basicTests()
340 size_t oSize = oend-op; in basicTests() local
342 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
343 op += oSize; in basicTests()
382 size_t oSize = oend-op; in basicTests() local
384 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
385 op += oSize; in basicTests()
679 size_t oSize = oend-op; in basicTests() local
681 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
682 op += oSize; in basicTests()
698 size_t oSize = oend-op; in basicTests() local
700 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
701 op += oSize; in basicTests()
714 size_t oSize = 10; in basicTests() local
716 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
717 op += oSize; in basicTests()
841 size_t const oSize = LZ4F_compressBound(iSize, prefsPtr); in fuzzerTests() local
846 result = LZ4F_compressUpdate(cCtx, op, oSize, ip, iSize, &cOptions); in fuzzerTests()
883 size_t oSize = MIN(oSizeMax, (size_t)(oend-op)); in fuzzerTests() local
888 result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions); in fuzzerTests()
892 XXH64_update(&xxh64, op, (U32)oSize); in fuzzerTests()
893 totalOut += oSize; in fuzzerTests()
894 op += oSize; in fuzzerTests()