Home | History | Annotate | Download | only in fuzz

Lines Matching defs:ncount

39     short ncount[256];
42 memset(ncount, 0, sizeof(ncount));
47 ncount[s] = n;
55 /* Ensure ncount[maxSymbolValue] != 0 and the sum is (1<<tableLog) */
56 ncount[maxSymbolValue] = remainingWeight + 1;
57 if (ncount[maxSymbolValue] == 1 && FUZZ_dataProducer_uint32Range(producer, 0, 1) == 1) {
58 ncount[maxSymbolValue] = -1;
64 dataSize = FSE_writeNCount(data, sizeof(data), ncount, maxSymbolValue, tableLog);
92 FUZZ_ASSERT(ncount[s] == rtNcount[s]);