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

  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 298 blockType_e blockType;
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 268 blockType_e *blockType; /* force specific block type */
301 int force_block_type = opts.blockType != NULL;
307 if ((RAND(seed) & 3) || (*(opts.blockType) == bt_rle)) {
1067 int force_block_type = opts.blockType != NULL;
1068 int const blockTypeDesc = (force_block_type) ? *(opts.blockType) : RAND(seed) % 8;
1070 int blockType;
1086 blockType = 0;
1096 blockType = 1;
1101 blockType = 2;
1108 blockType = 0
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1368 blockType_t blockType;
1436 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
1437 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
1439 if (bpPtr->blockType == bt_end) return 0;
1440 if (bpPtr->blockType == bt_rle) return 1;
1496 switch(litbp.blockType)
1892 /* blockType == blockCompressed, srcSize is trusted */
1936 switch(blockProperties.blockType)
2085 if (bp.blockType == bt_end)
2093 ctx->bType = bp.blockType;
    [all...]
zstd_v03.c 2347 blockType_t blockType;
2407 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2408 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2410 if (bpPtr->blockType == bt_end) return 0;
2411 if (bpPtr->blockType == bt_rle) return 1;
2835 /* blockType == blockCompressed */
2876 switch(blockProperties.blockType)
3024 if (bp.blockType == bt_end)
3032 ctx->bType = bp.blockType;
zstd_v04.c 2412 blockType_t blockType;
2539 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2540 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2542 if (bpPtr->blockType == bt_end) return 0;
2543 if (bpPtr->blockType == bt_rle) return 1;
2990 /* blockType == blockCompressed */
3056 switch(blockProperties.blockType)
3177 if (bp.blockType == bt_end)
3185 ctx->bType = bp.blockType;
zstd_v02.c 2707 blockType_t blockType;
2767 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2768 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2770 if (bpPtr->blockType == bt_end) return 0;
2771 if (bpPtr->blockType == bt_rle) return 1;
3196 /* blockType == blockCompressed */
3237 switch(blockProperties.blockType)
3384 if (bp.blockType == bt_end)
3392 ctx->bType = bp.blockType;
zstd_v05.c 2561 blockType_t blockType;
2604 blockType_t bType; /* used in ZSTDv05_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
2790 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2791 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2793 if (bpPtr->blockType == bt_end) return 0;
2794 if (bpPtr->blockType == bt_rle) return 1;
3343 { /* blockType == blockCompressed */
3405 switch(blockProperties.blockType)
3569 if (bp.blockType == bt_end) {
3575 dctx->bType = bp.blockType;
    [all...]
zstd_v06.c 2761 blockType_t bType; /* used in ZSTDv06_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
2964 blockType_t blockType;
2977 bpPtr->blockType = (blockType_t)((*in) >> 6);
2979 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2981 if (bpPtr->blockType == bt_end) return 0;
2982 if (bpPtr->blockType == bt_rle) return 1;
3478 { /* blockType == blockCompressed */
3537 switch(blockProperties.blockType)
3709 if (bp.blockType == bt_end) {
3714 dctx->bType = bp.blockType;
    [all...]
zstd_v07.c 2887 blockType_t bType; /* used in ZSTDv07_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
3194 blockType_t blockType;
3207 bpPtr->blockType = (blockType_t)((*in) >> 6);
3209 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
3211 if (bpPtr->blockType == bt_end) return 0;
3212 if (bpPtr->blockType == bt_rle) return 1;
3691 { /* blockType == blockCompressed */
3773 switch(blockProperties.blockType)
3792 if (blockProperties.blockType == bt_end) break; /* bt_end */
3901 if (blockProperties.blockType == bt_end) break
    [all...]

Completed in 69 milliseconds