HomeSort by: relevance | last modified time | path
    Searched refs:origSize (Results 1 - 14 of 14) sorted by relevancy

  /src/external/bsd/zstd/dist/contrib/seekable_format/tests/
seekable_tests.c 121 size_t const origSize = ZSTD_seekTable_getFrameDecompressedSize(zst, 0);
122 assert(origSize == inSize);
  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 300 U32 origSize;
  /src/external/bsd/zstd/dist/tests/
fullbench.c 691 check_compressedSequences(const void* compressed, size_t cSize, const void* orig, size_t origSize)
695 void* decompressed = malloc(origSize);
698 decSize = ZSTD_decompress(decompressed, origSize, compressed, cSize);
699 if (decSize != origSize) { free(decompressed); DISPLAY("ZSTD_decompress failed (%u) ", (unsigned)decSize); return 1; }
701 diff = memcmp(decompressed, orig, origSize);
zstreamtest.c 600 { unsigned long long origSize = ZSTD_findDecompressedSize(outBuff.dst, outBuff.pos);
601 CHECK(origSize == ZSTD_CONTENTSIZE_UNKNOWN, "Unknown!");
602 CHECK((size_t)origSize != CNBufferSize, "Exact original size must be present (got %llu)", origSize);
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1369 U32 origSize;
1437 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
1505 size_t rleSize = litbp.origSize;
zstd_v03.c 2348 U32 origSize;
2408 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
zstd_v07.c 3195 U32 origSize;
3209 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
3782 decodedSize = ZSTDv07_generateNxBytes(op, oend-op, *ip, blockProperties.origSize);
zstd_v04.c 2413 U32 origSize;
2540 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
zstd_v02.c 2708 U32 origSize;
2768 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
zstd_v05.c 2562 U32 origSize;
2791 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
zstd_v06.c 2965 U32 origSize;
2979 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 1025 decodedSize = ZSTD_setRleBlock(op, (size_t)(oBlockEnd-op), *ip, blockProperties.origSize);
1318 dctx->rleSize = bp.origSize;
zstd_decompress_block.c 72 bpPtr->origSize = cSize; /* only useful for RLE */
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 5227 Expr *origSize = TL.getSizeExpr();
5228 if (!origSize) origSize = T->getSizeExpr();
5231 = getDerived().TransformExpr(origSize);
5241 size != origSize) {

Completed in 86 milliseconds