Lines Matching refs:oSize

249             size_t decResult, oSize = COMPRESSIBLE_NOISE_LENGTH;  in basicTests()  local
251 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests()
260 op += oSize; in basicTests()
261 oSize = (size_t)(oend-op); in basicTests()
262 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests()
264 op += oSize; in basicTests()
270 { size_t oSize = 0; in basicTests() local
275 errorCode = LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL); in basicTests()
304 size_t oSize = oend-op; in basicTests() local
306 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
308 op += oSize; in basicTests()
357 size_t oSize = oend-op; in basicTests() local
359 { size_t const decompressError = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
361 op += oSize; in basicTests()
482 size_t oSize = oend-op; in basicTests() local
484 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
486 op += oSize; in basicTests()
502 size_t oSize = oend-op; in basicTests() local
504 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
506 op += oSize; in basicTests()
519 size_t oSize = 10; in basicTests() local
521 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
523 op += oSize; in basicTests()
642 size_t const oSize = LZ4F_compressBound(iSize, prefsPtr); in fuzzerTests() local
645 result = LZ4F_compressUpdate(cCtx, op, oSize, ip, iSize, &cOptions); in fuzzerTests()
682 size_t oSize = MIN(oSizeMax, (size_t)(oend-op)); in fuzzerTests() local
687 result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions); in fuzzerTests()
690 XXH64_update(&xxh64, op, (U32)oSize); in fuzzerTests()
691 totalOut += oSize; in fuzzerTests()
692 op += oSize; in fuzzerTests()