Lines Matching refs:decodedBuffer
203 void* decodedBuffer;
213 decodedBuffer = malloc(COMPRESSIBLE_NOISE_LENGTH);
228 BYTE* op = (BYTE*)decodedBuffer;
229 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH;
238 errorCode = LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressedBufferSize, NULL);
239 crcDest = XXH64(decodedBuffer, COMPRESSIBLE_NOISE_LENGTH, 1);
254 crcDest = XXH64(decodedBuffer, COMPRESSIBLE_NOISE_LENGTH, 1);
286 BYTE* op = (BYTE*)decodedBuffer;
287 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH;
308 crcDest = XXH64(decodedBuffer, COMPRESSIBLE_NOISE_LENGTH, 1);
352 free(decodedBuffer);
385 void* decodedBuffer = NULL;
403 decodedBuffer = malloc(srcDataLength);
404 CHECK(decodedBuffer==NULL, "decodedBuffer Allocation failed");
484 BYTE* op = (BYTE*)decodedBuffer;
500 //if (ip == compressedBuffer+62073) DISPLAY("oSize : %i : pos %i \n", (int)oSize, (int)(op-(BYTE*)decodedBuffer));
502 //if (op+oSize >= (BYTE*)decodedBuffer+94727) DISPLAY("iSize : %i : pos %i \n", (int)iSize, (int)(ip-(BYTE*)compressedBuffer));
504 if (result == (size_t)-ERROR_checksum_invalid) locateBuffDiff((BYTE*)srcBuffer+srcStart, decodedBuffer, srcSize, nonContiguousDst);
510 if (nonContiguousDst==2) op = decodedBuffer; // overwritten destination
514 if (crcDecoded != crcOrig) locateBuffDiff((BYTE*)srcBuffer+srcStart, decodedBuffer, srcSize, nonContiguousDst);
526 free(decodedBuffer);