Searched refs:previousDstEnd (Results 1 - 15 of 15) sorted by relevance

/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_ddict.c67 dctx->previousDstEnd = dctx->dictEnd;
70 dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
H A Dzstd_decompress_internal.h111 const void* previousDstEnd; /* detect continuity */ member in struct:ZSTD_DCtx_s
H A Dzstd_decompress.c573 dctx->previousDstEnd = (const char*)blockStart + blockSize;
981 dctx->previousDstEnd = (char*)dst + rSize;
1041 dctx->dictEnd = dctx->previousDstEnd;
1042 dctx->virtualStart = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
1044 dctx->previousDstEnd = (const char*)dict + dictSize;
1047 dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
1164 dctx->previousDstEnd = NULL;
H A Dzstd_decompress_block.c1420 if (dst != dctx->previousDstEnd) { /* not contiguous */
1421 dctx->dictEnd = dctx->previousDstEnd;
1422 dctx->virtualStart = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
1424 dctx->previousDstEnd = dst;
1436 dctx->previousDstEnd = (char*)dst + dSize;
/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dzstd_ddict.c67 dctx->previousDstEnd = dctx->dictEnd;
70 dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
H A Dzstd_decompress_internal.h133 const void* previousDstEnd; /* detect continuity */ member in struct:ZSTD_DCtx_s
H A Dzstd_decompress.c814 dctx->previousDstEnd = (const char*)blockStart + blockSize;
1254 dctx->previousDstEnd = (char*)dst + rSize;
1319 dctx->dictEnd = dctx->previousDstEnd;
1320 dctx->virtualStart = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
1322 dctx->previousDstEnd = (const char*)dict + dictSize;
1325 dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
1452 dctx->previousDstEnd = NULL;
H A Dzstd_decompress_block.c2054 if (dst != dctx->previousDstEnd && dstSize > 0) { /* not contiguous */
2055 dctx->dictEnd = dctx->previousDstEnd;
2056 dctx->virtualStart = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
2058 dctx->previousDstEnd = dst;
2070 dctx->previousDstEnd = (char*)dst + dSize;
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v04.c2499 const void* previousDstEnd; member in struct:ZSTDv04_Dctx_s
2518 dctx->previousDstEnd = NULL;
3026 if (dst != dctx->previousDstEnd) /* not contiguous */
3028 dctx->dictEnd = dctx->previousDstEnd;
3029 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3031 dctx->previousDstEnd = dst;
3074 ctx->dictEnd = ctx->previousDstEnd;
3075 ctx->vBase = (const char*)dst - ((const char*)(ctx->previousDstEnd) - (const char*)(ctx->base));
3263 ctx->previousDstEnd = (char*)dst + rSize;
3274 ctx->dictEnd = ctx->previousDstEnd;
[all...]
H A Dzstd_v07.c2935 const void* previousDstEnd; member in struct:ZSTDv07_DCtx_s
2966 dctx->previousDstEnd = NULL;
3731 if (dst != dctx->previousDstEnd) { /* not contiguous */
3732 dctx->dictEnd = dctx->previousDstEnd;
3733 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3735 dctx->previousDstEnd = dst;
3765 dctx->previousDstEnd = (char*)dst + dSize;
3775 dctx->previousDstEnd = (const char*)blockStart + blockSize;
4062 dctx->previousDstEnd = (char*)dst + rSize;
4086 dctx->dictEnd = dctx->previousDstEnd;
[all...]
H A Dzstd_v06.c2810 const void* previousDstEnd; member in struct:ZSTDv06_DCtx_s
2833 dctx->previousDstEnd = NULL;
3516 if (dst != dctx->previousDstEnd) { /* not contiguous */
3517 dctx->dictEnd = dctx->previousDstEnd;
3518 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3520 dctx->previousDstEnd = dst;
3790 dctx->previousDstEnd = (char*)dst + rSize;
3801 dctx->dictEnd = dctx->previousDstEnd;
3802 dctx->vBase = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3804 dctx->previousDstEnd
[all...]
H A Dzstd_v05.c2649 const void* previousDstEnd; member in struct:ZSTDv05_DCtx_s
2672 dctx->previousDstEnd = NULL;
3377 if (dst != dctx->previousDstEnd) { /* not contiguous */
3378 dctx->dictEnd = dctx->previousDstEnd;
3379 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3381 dctx->previousDstEnd = dst;
3649 dctx->previousDstEnd = (char*)dst + rSize;
3660 dctx->dictEnd = dctx->previousDstEnd;
3661 dctx->vBase = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3663 dctx->previousDstEnd
[all...]
H A Dzstd_v01.c1838 void* previousDstEnd; member in struct:ZSTDv01_Dctx_s
2067 dctx->previousDstEnd = NULL;
2097 if (dst != ctx->previousDstEnd) /* not contiguous */
2154 ctx->previousDstEnd = (void*)( ((char*)dst) + rSize);
H A Dzstd_v03.c2447 void* previousDstEnd; member in struct:ZSTD_DCtx_s
3032 dctx->previousDstEnd = NULL;
3060 if (dst != ctx->previousDstEnd) /* not contiguous */
3117 ctx->previousDstEnd = (void*)( ((char*)dst) + rSize);
H A Dzstd_v02.c2806 void* previousDstEnd; member in struct:ZSTD_DCtx_s
3390 dctx->previousDstEnd = NULL;
3418 if (dst != ctx->previousDstEnd) /* not contiguous */
3475 ctx->previousDstEnd = (void*)( ((char*)dst) + rSize);

Completed in 513 milliseconds