Searched refs:Dtime (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v03.c2222 U32 Dtime[3]; local
2235 Dtime[n] = algoTime[Q][n].tableTime + (algoTime[Q][n].decode256Time * D256);
2237 Dtime[1] += Dtime[1] >> 4; Dtime[2] += Dtime[2] >> 3; /* advantage to algorithms using less memory, for cache eviction */
2239 if (Dtime[1] < Dtime[0]) algoNb = 1;
H A Dzstd_v02.c2582 U32 Dtime[3]; local
2595 Dtime[n] = algoTime[Q][n].tableTime + (algoTime[Q][n].decode256Time * D256);
2597 Dtime[1] += Dtime[1] >> 4; Dtime[2] += Dtime[2] >> 3; /* advantage to algorithms using less memory, for cache eviction */
2599 if (Dtime[1] < Dtime[0]) algoNb = 1;
2600 if (Dtime[2] < Dtime[algoN
[all...]
H A Dzstd_v06.c2648 U32 Dtime[3]; /* decompression time estimation */ local
2660 Dtime[n] = algoTime[Q][n].tableTime + (algoTime[Q][n].decode256Time * D256);
2663 Dtime[1] += Dtime[1] >> 4; Dtime[2] += Dtime[2] >> 3; /* advantage to algorithms using less memory, for cache eviction */
2666 if (Dtime[1] < Dtime[0]) algoNb = 1;
2667 /* if (Dtime[2] < Dtime[algoN
[all...]
H A Dzstd_v05.c2522 U32 Dtime[3]; local
2534 Dtime[n] = algoTime[Q][n].tableTime + (algoTime[Q][n].decode256Time * D256);
2536 Dtime[1] += Dtime[1] >> 4; Dtime[2] += Dtime[2] >> 3; /* advantage to algorithms using less memory, for cache eviction */
2538 if (Dtime[1] < Dtime[0]) algoNb = 1;
H A Dzstd_v04.c2369 U32 Dtime[3]; local
2382 Dtime[n] = algoTime[Q][n].tableTime + (algoTime[Q][n].decode256Time * D256);
2384 Dtime[1] += Dtime[1] >> 4; Dtime[2] += Dtime[2] >> 3; /* advantage to algorithms using less memory, for cache eviction */
2386 if (Dtime[1] < Dtime[0]) algoNb = 1;

Completed in 275 milliseconds