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

  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 1855 { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize);
1857 (void)algoNb;
1858 assert(algoNb == 0);
1862 (void)algoNb;
1863 assert(algoNb == 1);
1867 return algoNb ? HUF_decompress1X2_DCtx_wksp(dctx, dst, dstSize, cSrc,
1930 { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize);
1932 (void)algoNb;
1933 assert(algoNb == 0);
1936 (void)algoNb;
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v07.c 2474 { U32 const algoNb = HUFv07_selectDecoder(dstSize, cSrcSize);
2475 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
2490 { U32 const algoNb = HUFv07_selectDecoder(dstSize, cSrcSize);
2491 return algoNb ? HUFv07_decompress4X4_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) :
2502 { U32 const algoNb = HUFv07_selectDecoder(dstSize, cSrcSize);
2503 return algoNb ? HUFv07_decompress4X4_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) :
2516 { U32 const algoNb = HUFv07_selectDecoder(dstSize, cSrcSize);
2517 return algoNb ? HUFv07_decompress1X4_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) :
zstd_v02.c 2522 U32 algoNb = 0;
2538 if (Dtime[1] < Dtime[0]) algoNb = 1;
2539 if (Dtime[2] < Dtime[algoNb]) algoNb = 2;
2541 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
zstd_v03.c 2161 U32 algoNb = 0;
2177 if (Dtime[1] < Dtime[0]) algoNb = 1;
2179 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
zstd_v04.c 2314 U32 algoNb = 0;
2330 if (Dtime[1] < Dtime[0]) algoNb = 1;
2332 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
zstd_v05.c 2471 U32 algoNb = 0;
2486 if (Dtime[1] < Dtime[0]) algoNb = 1;
2488 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);
zstd_v06.c 2609 { U32 algoNb = 0;
2610 if (Dtime[1] < Dtime[0]) algoNb = 1;
2611 /* if (Dtime[2] < Dtime[algoNb]) algoNb = 2; */ /* current speed of HUFv06_decompress4X6 is not good */
2612 return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);

Completed in 31 milliseconds