HomeSort by: relevance | last modified time | path
    Searched defs:FSE_tableStep (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 347 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
365 const U32 step = FSE_tableStep(tableSize);
zstd_v03.c 1032 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1042 const U32 step = FSE_tableStep(tableSize);
zstd_v04.c 1014 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1024 const U32 step = FSE_tableStep(tableSize);
zstd_v02.c 1032 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; }
1042 const U32 step = FSE_tableStep(tableSize);

Completed in 23 milliseconds