| /freebsd-12.1/sys/contrib/zstd/lib/common/ |
| H A D | fse_decompress.c | 100 U32 const tableSize = 1 << tableLog; in FSE_buildDTable() local 101 U32 highThreshold = tableSize-1; in FSE_buildDTable() 125 { U32 const tableMask = tableSize-1; in FSE_buildDTable() 126 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable() 140 for (u=0; u<tableSize; u++) { in FSE_buildDTable() 144 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSE_buildDTable() 180 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local 181 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw()
|
| H A D | fse.h | 696 #define FSE_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3) argument
|
| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | fse_compress.c | 87 U32 const tableSize = 1 << tableLog; in FSE_buildCTable_wksp() local 88 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() 93 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildCTable_wksp() 97 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() 117 cumul[maxSymbolValue+1] = tableSize+1; in FSE_buildCTable_wksp() 135 { U32 u; for (u=0; u<tableSize; u++) { in FSE_buildCTable_wksp() 194 const int tableSize = 1 << tableLog; in FSE_writeNCount_generic() local 210 threshold = tableSize; in FSE_writeNCount_generic() 648 const unsigned tableSize = 1 << nbBits; in FSE_buildCTable_raw() local 665 for (s=0; s<tableSize; s++) in FSE_buildCTable_raw() [all …]
|
| /freebsd-12.1/sys/contrib/ncsw/Peripherals/FM/Pcd/ |
| H A D | fm_manip.c | 87 return p_Manip->tableSize; in GetHmctSize() 95 size += p_CurManip->tableSize; in GetHmctSize() 135 tableSize += HMCD_BASIC_SIZE; in CalculateTableSize() 195 tableSize += in CalculateTableSize() 209 tableSize += in CalculateTableSize() 231 tableSize += HMCD_BASIC_SIZE; in CalculateTableSize() 240 tableSize += HMCD_BASIC_SIZE; in CalculateTableSize() 302 *p_TableSize = tableSize; in CalculateTableSize() 1164 (p_Manip->tableSize + in CreateManipActionNew() 1260 if (newSize > p_Manip->tableSize) in CreateManipActionShadow() [all …]
|
| H A D | fm_manip.h | 272 #define MANIP_GET_HMCT_SIZE(h_Manip) (((t_FmPcdManip *)h_Manip)->tableSize) 507 uint16_t tableSize; member
|
| /freebsd-12.1/sys/contrib/zstd/lib/legacy/ |
| H A D | zstd_v01.c | 389 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } in FSE_tableStep() argument 405 const U32 tableSize = 1 << tableLog; in FSE_buildDTable() local 406 const U32 tableMask = tableSize-1; in FSE_buildDTable() 407 const U32 step = FSE_tableStep(tableSize); in FSE_buildDTable() 410 U32 highThreshold = tableSize-1; in FSE_buildDTable() 452 for (i=0; i<tableSize; i++) in FSE_buildDTable() 457 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable() 620 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local 621 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw()
|
| H A D | zstd_v03.c | 1083 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } in FSE_tableStep() argument 1091 const U32 tableSize = 1 << tableLog; in FSE_buildDTable() local 1092 const U32 tableMask = tableSize-1; in FSE_buildDTable() 1093 const U32 step = FSE_tableStep(tableSize); in FSE_buildDTable() 1096 U32 highThreshold = tableSize-1; in FSE_buildDTable() 1138 for (i=0; i<tableSize; i++) in FSE_buildDTable() 1143 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable() 1306 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local 1307 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw()
|
| H A D | zstd_v02.c | 1082 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } in FSE_tableStep() argument 1090 const U32 tableSize = 1 << tableLog; in FSE_buildDTable() local 1091 const U32 tableMask = tableSize-1; in FSE_buildDTable() 1092 const U32 step = FSE_tableStep(tableSize); in FSE_buildDTable() 1095 U32 highThreshold = tableSize-1; in FSE_buildDTable() 1137 for (i=0; i<tableSize; i++) in FSE_buildDTable() 1142 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable() 1305 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local 1306 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw()
|
| H A D | zstd_v04.c | 1122 static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } in FSE_tableStep() argument 1130 const U32 tableSize = 1 << tableLog; in FSE_buildDTable() local 1131 const U32 tableMask = tableSize-1; in FSE_buildDTable() 1132 const U32 step = FSE_tableStep(tableSize); in FSE_buildDTable() 1135 U32 highThreshold = tableSize-1; in FSE_buildDTable() 1177 for (i=0; i<tableSize; i++) in FSE_buildDTable() 1182 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSE_buildDTable() 1347 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local 1348 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw()
|
| H A D | zstd_v06.c | 1199 #define FSEv06_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3) argument 1465 U32 const tableSize = 1 << tableLog; in FSEv06_buildDTable() local 1466 U32 highThreshold = tableSize-1; in FSEv06_buildDTable() 1490 { U32 const tableMask = tableSize-1; in FSEv06_buildDTable() 1491 U32 const step = FSEv06_TABLESTEP(tableSize); in FSEv06_buildDTable() 1506 for (u=0; u<tableSize; u++) { in FSEv06_buildDTable() 1510 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSEv06_buildDTable() 1547 const unsigned tableSize = 1 << nbBits; in FSEv06_buildDTable_raw() local 1548 const unsigned tableMask = tableSize - 1; in FSEv06_buildDTable_raw()
|
| H A D | zstd_v05.c | 1192 static U32 FSEv05_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } in FSEv05_tableStep() argument 1212 const U32 tableSize = 1 << tableLog; in FSEv05_buildDTable() local 1213 const U32 tableMask = tableSize-1; in FSEv05_buildDTable() 1214 const U32 step = FSEv05_tableStep(tableSize); in FSEv05_buildDTable() 1217 U32 highThreshold = tableSize-1; in FSEv05_buildDTable() 1251 for (i=0; i<tableSize; i++) { in FSEv05_buildDTable() 1255 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize); in FSEv05_buildDTable() 1401 const unsigned tableSize = 1 << nbBits; in FSEv05_buildDTable_raw() local 1402 const unsigned tableMask = tableSize - 1; in FSEv05_buildDTable_raw()
|
| H A D | zstd_v07.c | 965 #define FSEv07_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3) argument 1485 U32 const tableSize = 1 << tableLog; in FSEv07_buildDTable() local 1486 U32 highThreshold = tableSize-1; in FSEv07_buildDTable() 1510 { U32 const tableMask = tableSize-1; in FSEv07_buildDTable() 1511 U32 const step = FSEv07_TABLESTEP(tableSize); in FSEv07_buildDTable() 1526 for (u=0; u<tableSize; u++) { in FSEv07_buildDTable() 1530 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in FSEv07_buildDTable() 1567 const unsigned tableSize = 1 << nbBits; in FSEv07_buildDTable_raw() local 1568 const unsigned tableMask = tableSize - 1; in FSEv07_buildDTable_raw()
|
| /freebsd-12.1/sys/contrib/ncsw/inc/Peripherals/ |
| H A D | fm_port_ext.h | 1354 uint8_t tableSize; member 1395 uint8_t tableSize; member 1404 uint8_t tableSize; member
|
| /freebsd-12.1/sys/contrib/ncsw/Peripherals/FM/Port/ |
| H A D | fm_port.c | 5702 * params->p_AutoResArpInfo->tableSize; in AR_ComputeOffsets() 5712 * params->p_AutoResEchoIpv4Info->tableSize; in AR_ComputeOffsets() 5722 * params->p_AutoResEchoIpv6Info->tableSize; in AR_ComputeOffsets() 5794 < params->p_AutoResEchoIpv4Info->tableSize) in DsarCheckParams() 5808 < params->p_AutoResEchoIpv6Info->tableSize) in DsarCheckParams() 5862 for (; i < params->p_AutoResArpInfo->tableSize; i++) in DsarCheckParams() 5869 && params->p_AutoResEchoIpv4Info->tableSize) in DsarCheckParams() 5887 && params->p_AutoResEchoIpv6Info->tableSize) in DsarCheckParams() 6031 if (params->p_AutoResArpInfo->tableSize) 6058 if (params->p_AutoResEchoIpv4Info->tableSize) [all …]
|
| /freebsd-12.1/sys/contrib/zstd/contrib/seekable_format/ |
| H A D | zstdseek_decompress.c | 274 U32 const tableSize = sizePerEntry * numFrames; in ZSTD_seekable_loadSeekTable() local 275 U32 const frameSize = tableSize + ZSTD_seekTableFooterSize + ZSTD_skippableHeaderSize; in ZSTD_seekable_loadSeekTable()
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | X86DisassemblerTables.cpp | 892 const unsigned int tableSize = 16384; in emitContextTable() local 894 "[" << tableSize << "] = {\n"; in emitContextTable() 897 for (unsigned index = 0; index < tableSize; ++index) { in emitContextTable() 1007 if (index < tableSize - 1) in emitContextTable()
|
| /freebsd-12.1/sys/contrib/zstd/lib/dictBuilder/ |
| H A D | zdict.c | 390 const U32 tableSize = table->pos; in ZDICT_tryMerge() local 395 U32 u; for (u=1; u<tableSize; u++) { in ZDICT_tryMerge() 413 for (u=1; u<tableSize; u++) { in ZDICT_tryMerge()
|
| /freebsd-12.1/sys/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 813 U32 const tableSize = 1 << tableLog; in ZSTD_buildFSETable() local 814 U32 highThreshold = tableSize-1; in ZSTD_buildFSETable() 838 { U32 const tableMask = tableSize-1; in ZSTD_buildFSETable() 839 U32 const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable() 853 for (u=0; u<tableSize; u++) { in ZSTD_buildFSETable() 857 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize); in ZSTD_buildFSETable()
|
| /freebsd-12.1/contrib/wpa/src/utils/ |
| H A D | http_curl.c | 307 ASN1_INTEGER *tableSize; member 381 ASN1_IMP(LogotypeImageResolution, d.tableSize, ASN1_INTEGER, 2) 678 val = ASN1_INTEGER_get(info->resolution->d.tableSize); in i2r_LogotypeImageInfo()
|
| /freebsd-12.1/sys/contrib/zstd/doc/ |
| H A D | zstd_compression_format.md | 1032 position += (tableSize>>1) + (tableSize>>3) + 3; 1033 position &= tableSize-1;
|