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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_ddict.c 67 dctx->previousDstEnd = dctx->dictEnd;
70 dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
zstd_decompress_internal.h 134 const void* previousDstEnd; /* detect continuity */
zstd_decompress.c 889 dctx->previousDstEnd = (const char*)blockStart + blockSize;
1369 dctx->previousDstEnd = (char*)dst + rSize;
1435 dctx->dictEnd = dctx->previousDstEnd;
1436 dctx->virtualStart = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
1438 dctx->previousDstEnd = (const char*)dict + dictSize;
1441 dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
1568 dctx->previousDstEnd = NULL;
zstd_decompress_block.c 2186 if (dst != dctx->previousDstEnd && dstSize > 0) { /* not contiguous */
2187 dctx->dictEnd = dctx->previousDstEnd;
2188 dctx->virtualStart = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
2190 dctx->previousDstEnd = dst;
2204 dctx->previousDstEnd = (char*)dst + dSize;
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v04.c 2443 const void* previousDstEnd;
2462 dctx->previousDstEnd = NULL;
2976 if (dst != dctx->previousDstEnd) /* not contiguous */
2978 dctx->dictEnd = dctx->previousDstEnd;
2979 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
2981 dctx->previousDstEnd = dst;
3024 ctx->dictEnd = ctx->previousDstEnd;
3025 ctx->vBase = (const char*)dst - ((const char*)(ctx->previousDstEnd) - (const char*)(ctx->base));
3214 ctx->previousDstEnd = (char*)dst + rSize;
3225 ctx->dictEnd = ctx->previousDstEnd;
    [all...]
zstd_v07.c 2880 const void* previousDstEnd;
2911 dctx->previousDstEnd = NULL;
3679 if (dst != dctx->previousDstEnd) { /* not contiguous */
3680 dctx->dictEnd = dctx->previousDstEnd;
3681 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3683 dctx->previousDstEnd = dst;
3713 dctx->previousDstEnd = (char*)dst + dSize;
3723 dctx->previousDstEnd = (const char*)blockStart + blockSize;
4011 dctx->previousDstEnd = (char*)dst + rSize;
4034 dctx->dictEnd = dctx->previousDstEnd;
    [all...]
zstd_v05.c 2597 const void* previousDstEnd;
2620 dctx->previousDstEnd = NULL;
3331 if (dst != dctx->previousDstEnd) { /* not contiguous */
3332 dctx->dictEnd = dctx->previousDstEnd;
3333 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3335 dctx->previousDstEnd = dst;
3604 dctx->previousDstEnd = (char*)dst + rSize;
3615 dctx->dictEnd = dctx->previousDstEnd;
3616 dctx->vBase = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3618 dctx->previousDstEnd = (const char*)dict + dictSize
    [all...]
zstd_v06.c 2754 const void* previousDstEnd;
2777 dctx->previousDstEnd = NULL;
3466 if (dst != dctx->previousDstEnd) { /* not contiguous */
3467 dctx->dictEnd = dctx->previousDstEnd;
3468 dctx->vBase = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3470 dctx->previousDstEnd = dst;
3741 dctx->previousDstEnd = (char*)dst + rSize;
3752 dctx->dictEnd = dctx->previousDstEnd;
3753 dctx->vBase = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->base));
3755 dctx->previousDstEnd = (const char*)dict + dictSize
    [all...]
zstd_v01.c 1806 void* previousDstEnd;
2035 dctx->previousDstEnd = NULL;
2065 if (dst != ctx->previousDstEnd) /* not contiguous */
2123 ctx->previousDstEnd = (void*)( ((char*)dst) + rSize);
zstd_v03.c 2385 void* previousDstEnd;
2976 dctx->previousDstEnd = NULL;
3004 if (dst != ctx->previousDstEnd) /* not contiguous */
3062 ctx->previousDstEnd = (void*)( ((char*)dst) + rSize);
zstd_v02.c 2745 void* previousDstEnd;
3336 dctx->previousDstEnd = NULL;
3364 if (dst != ctx->previousDstEnd) /* not contiguous */
3422 ctx->previousDstEnd = (void*)( ((char*)dst) + rSize);

Completed in 64 milliseconds