Home
last modified time | relevance | path

Searched refs:LTSIZE (Results 1 – 1 of 1) sorted by relevance

/third_party/lz4/programs/
Ddatagen.c50 #define LTSIZE (1<<LTLOG) macro
51 #define LTMASK (LTSIZE-1)
52 typedef BYTE litDistribTable[LTSIZE];
79 while (u<LTSIZE) { in RDG_fillLiteralDistrib()
80 U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1; in RDG_fillLiteralDistrib()
81 U32 const end = MIN(u+weight, LTSIZE); in RDG_fillLiteralDistrib()
83 assert(u<LTSIZE); /* try to ease static analyzer. u < end <= LTSIZE */ in RDG_fillLiteralDistrib()