Lines Matching +full:0 +full:b11

54     unsigned charnum = 0;  in FSE_readNCount_body()
56 int previous0 = 0; in FSE_readNCount_body()
60 char buffer[8] = {0}; in FSE_readNCount_body()
71 …t(normalizedCounter, 0, (*maxSVPtr+1) * sizeof(normalizedCounter[0])); /* all symbols not presen… in FSE_readNCount_body()
73 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
85 * 2-bit repeat code is 0b11 there is another in FSE_readNCount_body()
89 int repeats = ZSTD_countTrailingZeros32(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
100 repeats = ZSTD_countTrailingZeros32(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
106 /* Add the final repeat which isn't 0b11. */ in FSE_readNCount_body()
117 /* We don't need to set the normalized count to 0 in FSE_readNCount_body()
118 * because we already memset the whole buffer to 0. in FSE_readNCount_body()
149 if (count >= 0) { in FSE_readNCount_body()
224 … FSE_readNCount_bmi2(normalizedCounter, maxSVPtr, tableLogPtr, headerBuffer, hbSize, /* bmi2 */ 0); in FSE_readNCount()
240 …ht, hwSize, rankStats, nbSymbolsPtr, tableLogPtr, src, srcSize, wksp, sizeof(wksp), /* flags */ 0); in HUF_readStats()
256 iSize = ip[0]; in HUF_readStats_body()
257 …/* ZSTD_memset(huffWeight, 0, hwSize); *//* is not necessary, even though some analyzer complain… in HUF_readStats_body()
266 for (n=0; n<oSize; n+=2) { in HUF_readStats_body()
278 ZSTD_memset(rankStats, 0, (HUF_TABLELOG_MAX + 1) * sizeof(U32)); in HUF_readStats_body()
279 weightTotal = 0; in HUF_readStats_body()
280 { U32 n; for (n=0; n<oSize; n++) { in HUF_readStats_body()
285 if (weightTotal == 0) return ERROR(corruption_detected); in HUF_readStats_body()
315 …dy(huffWeight, hwSize, rankStats, nbSymbolsPtr, tableLogPtr, src, srcSize, workSpace, wkspSize, 0); in HUF_readStats_body_default()