Searched refs:tableSize (Results 1 - 18 of 18) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/lib/common/
H A Dfse_decompress.c100 U32 const tableSize = 1 << tableLog; local
101 U32 highThreshold = tableSize-1;
125 { U32 const tableMask = tableSize-1;
126 U32 const step = FSE_TABLESTEP(tableSize);
140 for (u=0; u<tableSize; u++) {
144 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
180 const unsigned tableSize = 1 << nbBits; local
181 const unsigned tableMask = tableSize - 1;
H A Dfse.h696 #define FSE_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3)
/freebsd-12-stable/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c87 U32 const tableSize = 1 << tableLog; local
88 U32 const tableMask = tableSize - 1;
91 void* const FSCT = ((U32*)ptr) + 1 /* header */ + (tableLog ? tableSize>>1 : 1) ;
93 U32 const step = FSE_TABLESTEP(tableSize);
97 U32 highThreshold = tableSize-1;
117 cumul[maxSymbolValue+1] = tableSize+1;
135 { U32 u; for (u=0; u<tableSize; u++) {
137 tableU16[cumul[s]++] = (U16) (tableSize+u); /* TableU16 : sorted by symbol order; gives next state value */
194 const int tableSize = 1 << tableLog; local
209 remaining = tableSize
648 const unsigned tableSize = 1 << nbBits; local
[all...]
/freebsd-12-stable/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_manip.c87 return p_Manip->tableSize;
95 size += p_CurManip->tableSize;
98 size += p_CurManip->tableSize; /* add last size */
128 uint8_t localDataSize, remain, tableSize = 0, dataSize = 0; local
135 tableSize += HMCD_BASIC_SIZE;
145 tableSize += HMCD_BASIC_SIZE;
173 tableSize += (uint8_t)(HMCD_BASIC_SIZE + localDataSize);
181 tableSize += HMCD_BASIC_SIZE + HMCD_PTR_SIZE;
195 tableSize +=
204 tableSize
[all...]
H A Dfm_manip.h272 #define MANIP_GET_HMCT_SIZE(h_Manip) (((t_FmPcdManip *)h_Manip)->tableSize)
507 uint16_t tableSize; member in struct:__anon10801
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c389 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } argument
405 const U32 tableSize = 1 << tableLog; local
406 const U32 tableMask = tableSize-1;
407 const U32 step = FSE_tableStep(tableSize);
410 U32 highThreshold = tableSize-1;
452 for (i=0; i<tableSize; i++)
457 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
620 const unsigned tableSize local
[all...]
H A Dzstd_v03.c1083 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } argument
1091 const U32 tableSize = 1 << tableLog; local
1092 const U32 tableMask = tableSize-1;
1093 const U32 step = FSE_tableStep(tableSize);
1096 U32 highThreshold = tableSize-1;
1138 for (i=0; i<tableSize; i++)
1143 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1306 const unsigned tableSize local
[all...]
H A Dzstd_v02.c1082 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } argument
1090 const U32 tableSize = 1 << tableLog; local
1091 const U32 tableMask = tableSize-1;
1092 const U32 step = FSE_tableStep(tableSize);
1095 U32 highThreshold = tableSize-1;
1137 for (i=0; i<tableSize; i++)
1142 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1305 const unsigned tableSize local
[all...]
H A Dzstd_v04.c1122 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } argument
1130 const U32 tableSize = 1 << tableLog; local
1131 const U32 tableMask = tableSize-1;
1132 const U32 step = FSE_tableStep(tableSize);
1135 U32 highThreshold = tableSize-1;
1177 for (i=0; i<tableSize; i++)
1182 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1347 const unsigned tableSize local
[all...]
H A Dzstd_v05.c1192 static U32 FSEv05_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } argument
1212 const U32 tableSize = 1 << tableLog; local
1213 const U32 tableMask = tableSize-1;
1214 const U32 step = FSEv05_tableStep(tableSize);
1217 U32 highThreshold = tableSize-1;
1251 for (i=0; i<tableSize; i++) {
1255 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
1401 const unsigned tableSize local
[all...]
H A Dzstd_v06.c1199 #define FSEv06_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3)
1465 U32 const tableSize = 1 << tableLog; local
1466 U32 highThreshold = tableSize-1;
1490 { U32 const tableMask = tableSize-1;
1491 U32 const step = FSEv06_TABLESTEP(tableSize);
1506 for (u=0; u<tableSize; u++) {
1510 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
1547 const unsigned tableSize local
[all...]
H A Dzstd_v07.c965 #define FSEv07_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3)
1485 U32 const tableSize = 1 << tableLog; local
1486 U32 highThreshold = tableSize-1;
1510 { U32 const tableMask = tableSize-1;
1511 U32 const step = FSEv07_TABLESTEP(tableSize);
1526 for (u=0; u<tableSize; u++) {
1530 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
1567 const unsigned tableSize local
[all...]
/freebsd-12-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_port_ext.h1354 uint8_t tableSize; member in struct:t_FmPortDsarArpInfo
1395 uint8_t tableSize; member in struct:t_FmPortDsarEchoIpv4Info
1404 uint8_t tableSize; member in struct:t_FmPortDsarEchoIpv6Info
/freebsd-12-stable/sys/contrib/zstd/contrib/seekable_format/
H A Dzstdseek_decompress.c274 U32 const tableSize = sizePerEntry * numFrames; local
275 U32 const frameSize = tableSize + ZSTD_seekTableFooterSize + ZSTD_skippableHeaderSize;
/freebsd-12-stable/sys/contrib/ncsw/Peripherals/FM/Port/
H A Dfm_port.c5702 * params->p_AutoResArpInfo->tableSize;
5712 * params->p_AutoResEchoIpv4Info->tableSize;
5722 * params->p_AutoResEchoIpv6Info->tableSize;
5788 && sizes->maxNumOfArpEntries < params->p_AutoResArpInfo->tableSize)
5794 < params->p_AutoResEchoIpv4Info->tableSize)
5808 < params->p_AutoResEchoIpv6Info->tableSize)
5856 if (params->p_AutoResArpInfo && params->p_AutoResArpInfo->tableSize)
5862 for (; i < params->p_AutoResArpInfo->tableSize; i++)
5869 && params->p_AutoResEchoIpv4Info->tableSize)
5879 for (; i < params->p_AutoResEchoIpv4Info->tableSize;
[all...]
/freebsd-12-stable/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c390 const U32 tableSize = table->pos; local
395 U32 u; for (u=1; u<tableSize; u++) {
413 for (u=1; u<tableSize; u++) {
/freebsd-12-stable/contrib/wpa/src/utils/
H A Dhttp_curl.c307 ASN1_INTEGER *tableSize; member in union:__anon7506::__anon7507
381 ASN1_IMP(LogotypeImageResolution, d.tableSize, ASN1_INTEGER, 2)
678 val = ASN1_INTEGER_get(info->resolution->d.tableSize);
/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c813 U32 const tableSize = 1 << tableLog; local
814 U32 highThreshold = tableSize-1;
838 { U32 const tableMask = tableSize-1;
839 U32 const step = FSE_TABLESTEP(tableSize);
853 for (u=0; u<tableSize; u++) {
857 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);

Completed in 382 milliseconds