Home
last modified time | relevance | path

Searched refs:decodedBytes (Results 1 – 3 of 3) sorted by relevance

/third_party/lz4/tests/
DcheckFrame.c138 size_t decodedBytes = ress.dstBufferSize; in frameCheck() local
162 decodedBytes = ress.dstBufferSize; in frameCheck()
163 …nextToLoad = LZ4F_decompress(ress.ctx, ress.dstBuffer, &decodedBytes, (char*)(ress.srcBuffer)+pos,… in frameCheck()
167 decodedBytes = ress.dstBufferSize; in frameCheck()
179 …nextToLoad = LZ4F_decompress(ress.ctx, ress.dstBuffer, &decodedBytes, (char*)(ress.srcBuffer)+pos,… in frameCheck()
181 curblocksize += decodedBytes; in frameCheck()
/third_party/node/test/fixtures/wpt/common/security-features/resources/
Dcommon.sub.js419 let decodedBytes = new Uint8ClampedArray(rgba.length);
450 decodedBytes[decodedLength++] = byte;
454 decodedBytes = decodedBytes.subarray(0, decodedLength);
455 var string_data = (new TextDecoder("ascii")).decode(decodedBytes);
/third_party/lz4/programs/
Dlz4io.c1097 size_t decodedBytes = ress.dstBufferSize; in LZ4IO_decompressLZ4F() local
1104 …while ((pos < readSize) || (decodedBytes == ress.dstBufferSize)) { /* still to read, or still to … in LZ4IO_decompressLZ4F()
1107 decodedBytes = ress.dstBufferSize; in LZ4IO_decompressLZ4F()
1109 ress.dstBuffer, &decodedBytes, in LZ4IO_decompressLZ4F()
1118 if (decodedBytes) { in LZ4IO_decompressLZ4F()
1120 …storedSkips = LZ4IO_fwriteSparse(dstFile, ress.dstBuffer, decodedBytes, prefs->sparseFileSupport, … in LZ4IO_decompressLZ4F()
1121 filesize += decodedBytes; in LZ4IO_decompressLZ4F()