mirror of
https://github.com/facebook/zstd.git
synced 2025-12-09 00:03:18 -05:00
commit
92a3e3e9ca
@ -115,14 +115,18 @@ matrix:
|
|||||||
script:
|
script:
|
||||||
- make arminstall
|
- make arminstall
|
||||||
- make armfuzz
|
- make armfuzz
|
||||||
- name: Trusty (AARCH64 + Fuzz Test)
|
|
||||||
|
- name: Xenial (AARCH64 + Fuzz Test)
|
||||||
|
dist: xenial
|
||||||
script:
|
script:
|
||||||
- make arminstall
|
- make arminstall
|
||||||
- make aarch64fuzz
|
- make aarch64fuzz
|
||||||
|
|
||||||
- name: Trusty (PPC + Fuzz Test)
|
- name: Trusty (PPC + Fuzz Test)
|
||||||
script:
|
script:
|
||||||
- make ppcinstall
|
- make ppcinstall
|
||||||
- make ppcfuzz
|
- make ppcfuzz
|
||||||
|
|
||||||
- name: Trusty (PPC64 + Fuzz Test)
|
- name: Trusty (PPC64 + Fuzz Test)
|
||||||
script:
|
script:
|
||||||
- make ppcinstall
|
- make ppcinstall
|
||||||
|
|||||||
@ -115,7 +115,7 @@ size_t FSE_buildCTable_wksp(FSE_CTable* ct,
|
|||||||
/* symbol start positions */
|
/* symbol start positions */
|
||||||
{ U32 u;
|
{ U32 u;
|
||||||
cumul[0] = 0;
|
cumul[0] = 0;
|
||||||
for (u=1; u<=maxSymbolValue+1; u++) {
|
for (u=1; u <= maxSymbolValue+1; u++) {
|
||||||
if (normalizedCounter[u-1]==-1) { /* Low proba symbol */
|
if (normalizedCounter[u-1]==-1) { /* Low proba symbol */
|
||||||
cumul[u] = cumul[u-1] + 1;
|
cumul[u] = cumul[u-1] + 1;
|
||||||
tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1);
|
tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user