Searched refs:blockType (Results 1 - 14 of 14) sorted by relevance

/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c1406 blockType_t blockType; member in struct:__anon169
1474 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
1475 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
1477 if (bpPtr->blockType == bt_end) return 0;
1478 if (bpPtr->blockType == bt_rle) return 1;
1534 switch(litbp.blockType)
1924 /* blockType == blockCompressed, srcSize is trusted */
1968 switch(blockProperties.blockType)
2117 if (bp.blockType == bt_end)
2125 ctx->bType = bp.blockType;
[all...]
H A Dzstd_v03.c2409 blockType_t blockType; member in struct:__anon205
2469 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2470 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2472 if (bpPtr->blockType == bt_end) return 0;
2473 if (bpPtr->blockType == bt_rle) return 1;
2891 /* blockType == blockCompressed */
2932 switch(blockProperties.blockType)
3080 if (bp.blockType == bt_end)
3088 ctx->bType = bp.blockType;
H A Dzstd_v07.c2942 blockType_t bType; /* used in ZSTDv07_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
3249 blockType_t blockType; member in struct:__anon288
3262 bpPtr->blockType = (blockType_t)((*in) >> 6);
3264 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
3266 if (bpPtr->blockType == bt_end) return 0;
3267 if (bpPtr->blockType == bt_rle) return 1;
3743 { /* blockType == blockCompressed */
3825 switch(blockProperties.blockType)
3844 if (blockProperties.blockType == bt_end) break; /* bt_end */
3953 if (blockProperties.blockType
[all...]
H A Dzstd_v06.c2817 blockType_t bType; /* used in ZSTDv06_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
3020 blockType_t blockType; member in struct:__anon265
3033 bpPtr->blockType = (blockType_t)((*in) >> 6);
3035 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
3037 if (bpPtr->blockType == bt_end) return 0;
3038 if (bpPtr->blockType == bt_rle) return 1;
3528 { /* blockType == blockCompressed */
3587 switch(blockProperties.blockType)
3759 if (bp.blockType == bt_end) {
3764 dctx->bType = bp.blockType;
[all...]
H A Dzstd_v05.c2613 blockType_t blockType; member in struct:__anon241
2656 blockType_t bType; /* used in ZSTDv05_decompressContinue(), to transfer blockType between header decoding and block decoding stages */
2842 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2843 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2845 if (bpPtr->blockType == bt_end) return 0;
2846 if (bpPtr->blockType == bt_rle) return 1;
3389 { /* blockType == blockCompressed */
3451 switch(blockProperties.blockType)
3615 if (bp.blockType == bt_end) {
3621 dctx->bType = bp.blockType;
[all...]
H A Dzstd_v04.c2468 blockType_t blockType; member in struct:__anon223
2595 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2596 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2598 if (bpPtr->blockType == bt_end) return 0;
2599 if (bpPtr->blockType == bt_rle) return 1;
3040 /* blockType == blockCompressed */
3106 switch(blockProperties.blockType)
3227 if (bp.blockType == bt_end)
3235 ctx->bType = bp.blockType;
H A Dzstd_v02.c2768 blockType_t blockType; member in struct:__anon188
2828 bpPtr->blockType = (blockType_t)(headerFlags >> 6);
2829 bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0;
2831 if (bpPtr->blockType == bt_end) return 0;
2832 if (bpPtr->blockType == bt_rle) return 1;
3250 /* blockType == blockCompressed */
3291 switch(blockProperties.blockType)
3438 if (bp.blockType == bt_end)
3446 ctx->bType = bp.blockType;
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dzstd_internal.h424 blockType_e blockType; member in struct:__anon164
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h463 blockType_e blockType; member in struct:__anon58
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_block.c64 bpPtr->blockType = (blockType_e)((cBlockHeader >> 1) & 3);
66 if (bpPtr->blockType == bt_rle) return 1;
67 RETURN_ERROR_IF(bpPtr->blockType == bt_reserved, corruption_detected, "");
1350 { /* blockType == blockCompressed */
H A Dzstd_decompress.c647 switch(blockProperties.blockType)
928 dctx->bType = bp.blockType;
/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c64 bpPtr->blockType = (blockType_e)((cBlockHeader >> 1) & 3);
66 if (bpPtr->blockType == bt_rle) return 1;
67 RETURN_ERROR_IF(bpPtr->blockType == bt_reserved, corruption_detected, "");
1981 { /* blockType == blockCompressed */
H A Dzstd_decompress.c915 switch(blockProperties.blockType)
1201 dctx->bType = bp.blockType;
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7343 else if (auto blockType = type->getAs<BlockPointerType>())
7344 type = blockType->getPointeeType();

Completed in 430 milliseconds