HomeSort by: relevance | last modified time | path
    Searched defs:oSize (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
entropy_common.c 252 size_t oSize;
259 oSize = iSize - 127;
260 iSize = ((oSize+1)/2);
262 if (oSize >= hwSize) return ERROR(corruption_detected);
265 for (n=0; n<oSize; n+=2) {
272 oSize = FSE_decompress_wksp_bmi2(huffWeight, hwSize-1, ip+1, iSize, 6, workSpace, wkspSize, bmi2);
273 if (FSE_isError(oSize)) return oSize;
279 { U32 n; for (n=0; n<oSize; n++) {
296 huffWeight[oSize] = (BYTE)lastWeight
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 927 size_t oSize;
943 oSize = l[iSize-242];
949 oSize = iSize - 127;
950 iSize = ((oSize+1)/2);
953 for (n=0; n<oSize; n+=2)
963 oSize = FSE_decompress(huffWeight, HUF_MAX_SYMBOL_VALUE, ip+1, iSize); /* max 255 values decoded, last one is implied */
964 if (FSE_isError(oSize)) return oSize;
970 for (n=0; n<oSize; n++)
988 huffWeight[oSize] = (BYTE)lastWeight
    [all...]
zstd_v03.c 1485 size_t oSize;
1497 oSize = l[iSize-242];
1503 oSize = iSize - 127;
1504 iSize = ((oSize+1)/2);
1506 if (oSize >= hwSize) return ERROR(corruption_detected);
1508 for (n=0; n<oSize; n+=2)
1518 oSize = FSE_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
1519 if (FSE_isError(oSize)) return oSize;
1525 for (n=0; n<oSize; n++
    [all...]
zstd_v04.c 1644 size_t oSize;
1656 oSize = l[iSize-242];
1662 oSize = iSize - 127;
1663 iSize = ((oSize+1)/2);
1665 if (oSize >= hwSize) return ERROR(corruption_detected);
1667 for (n=0; n<oSize; n+=2)
1677 oSize = FSE_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
1678 if (FSE_isError(oSize)) return oSize;
1684 for (n=0; n<oSize; n++
    [all...]
zstd_v02.c 1489 size_t oSize;
1501 oSize = l[iSize-242];
1507 oSize = iSize - 127;
1508 iSize = ((oSize+1)/2);
1510 if (oSize >= hwSize) return ERROR(corruption_detected);
1512 for (n=0; n<oSize; n+=2)
1522 oSize = FSE_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
1523 if (FSE_isError(oSize)) return oSize;
1529 for (n=0; n<oSize; n++
    [all...]
zstd_v05.c 1750 size_t oSize;
1760 oSize = l[iSize-242];
1765 oSize = iSize - 127;
1766 iSize = ((oSize+1)/2);
1768 if (oSize >= hwSize) return ERROR(corruption_detected);
1770 for (n=0; n<oSize; n+=2) {
1776 oSize = FSEv05_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
1777 if (FSEv05_isError(oSize)) return oSize;
1783 for (n=0; n<oSize; n++)
    [all...]
zstd_v06.c 1805 size_t oSize;
1814 oSize = l[iSize-242];
1819 oSize = iSize - 127;
1820 iSize = ((oSize+1)/2);
1822 if (oSize >= hwSize) return ERROR(corruption_detected);
1825 for (n=0; n<oSize; n+=2) {
1831 oSize = FSEv06_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
1832 if (FSEv06_isError(oSize)) return oSize;
1838 { U32 n; for (n=0; n<oSize; n++)
    [all...]
zstd_v07.c 1258 size_t oSize;
1267 oSize = l[iSize-242];
1272 oSize = iSize - 127;
1273 iSize = ((oSize+1)/2);
1275 if (oSize >= hwSize) return ERROR(corruption_detected);
1278 for (n=0; n<oSize; n+=2) {
1284 oSize = FSEv07_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */
1285 if (FSEv07_isError(oSize)) return oSize;
1291 { U32 n; for (n=0; n<oSize; n++)
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 6200 size_t oSize = (size_t)(oend-op);
6203 if (oSize >= ZSTD_compressBound(iSize) || zcs->appliedParams.outBufferMode == ZSTD_bm_stable)
6206 cDst = zcs->outBuff, oSize = zcs->outBuffSize;
6210 ZSTD_compressEnd_public(zcs, cDst, oSize,
6212 ZSTD_compressContinue_public(zcs, cDst, oSize,
6228 ZSTD_compressEnd_public(zcs, cDst, oSize, ip, iSize) :
6229 ZSTD_compressContinue_public(zcs, cDst, oSize, ip, iSize);

Completed in 72 milliseconds