tableSize 261 arch/arc/kernel/unwind.c unsigned long tableSize = table->size, hdrSize; tableSize 281 arch/arc/kernel/unwind.c if (tableSize & (sizeof(*fde) - 1)) tableSize 285 arch/arc/kernel/unwind.c tableSize > sizeof(*fde) && tableSize - sizeof(*fde) >= *fde; tableSize 286 arch/arc/kernel/unwind.c tableSize -= sizeof(*fde) + *fde, fde += 1 + *fde / sizeof(*fde)) { tableSize 311 arch/arc/kernel/unwind.c if (tableSize || !n) tableSize 332 arch/arc/kernel/unwind.c for (fde = table->address, tableSize = table->size, n = 0; tableSize 333 arch/arc/kernel/unwind.c tableSize; tableSize 334 arch/arc/kernel/unwind.c tableSize -= sizeof(*fde) + *fde, fde += 1 + *fde / sizeof(*fde)) { tableSize 936 arch/arc/kernel/unwind.c unsigned long tableSize; tableSize 942 arch/arc/kernel/unwind.c tableSize = sizeof(unsigned long); tableSize 945 arch/arc/kernel/unwind.c tableSize = 2; tableSize 948 arch/arc/kernel/unwind.c tableSize = 4; tableSize 951 arch/arc/kernel/unwind.c tableSize = 8; tableSize 954 arch/arc/kernel/unwind.c tableSize = 0; tableSize 959 arch/arc/kernel/unwind.c if (tableSize && read_pointer(&ptr, end, hdr[1]) tableSize 962 arch/arc/kernel/unwind.c && i == (end - ptr) / (2 * tableSize) tableSize 963 arch/arc/kernel/unwind.c && !((end - ptr) % (2 * tableSize))) { tableSize 966 arch/arc/kernel/unwind.c ptr + (i / 2) * (2 * tableSize); tableSize 969 arch/arc/kernel/unwind.c cur + tableSize, tableSize 974 arch/arc/kernel/unwind.c ptr = cur - tableSize; tableSize 980 arch/arc/kernel/unwind.c ptr + tableSize, tableSize 985 arch/arc/kernel/unwind.c tableSize, tableSize 573 lib/zstd/fse.h #define FSE_TABLESTEP(tableSize) ((tableSize >> 1) + (tableSize >> 3) + 3) tableSize 94 lib/zstd/fse_compress.c U32 const tableSize = 1 << tableLog; tableSize 95 lib/zstd/fse_compress.c U32 const tableMask = tableSize - 1; tableSize 98 lib/zstd/fse_compress.c void *const FSCT = ((U32 *)ptr) + 1 /* header */ + (tableLog ? tableSize >> 1 : 1); tableSize 100 lib/zstd/fse_compress.c U32 const step = FSE_TABLESTEP(tableSize); tableSize 101 lib/zstd/fse_compress.c U32 highThreshold = tableSize - 1; tableSize 136 lib/zstd/fse_compress.c cumul[maxSymbolValue + 1] = tableSize + 1; tableSize 160 lib/zstd/fse_compress.c for (u = 0; u < tableSize; u++) { tableSize 162 lib/zstd/fse_compress.c tableU16[cumul[s]++] = (U16)(tableSize + u); /* TableU16 : sorted by symbol order; gives next state value */ tableSize 210 lib/zstd/fse_compress.c const int tableSize = 1 << tableLog; tableSize 225 lib/zstd/fse_compress.c remaining = tableSize + 1; /* +1 for extra accuracy */ tableSize 226 lib/zstd/fse_compress.c threshold = tableSize; tableSize 668 lib/zstd/fse_compress.c const unsigned tableSize = 1 << nbBits; tableSize 669 lib/zstd/fse_compress.c const unsigned tableMask = tableSize - 1; tableSize 673 lib/zstd/fse_compress.c void *const FSCT = ((U32 *)ptr) + 1 /* header */ + (tableSize >> 1); /* assumption : tableLog >= 1 */ tableSize 686 lib/zstd/fse_compress.c for (s = 0; s < tableSize; s++) tableSize 687 lib/zstd/fse_compress.c tableU16[s] = (U16)(tableSize + s); tableSize 102 lib/zstd/fse_decompress.c U32 const tableSize = 1 << tableLog; tableSize 103 lib/zstd/fse_decompress.c U32 highThreshold = tableSize - 1; tableSize 137 lib/zstd/fse_decompress.c U32 const tableMask = tableSize - 1; tableSize 138 lib/zstd/fse_decompress.c U32 const step = FSE_TABLESTEP(tableSize); tableSize 156 lib/zstd/fse_decompress.c for (u = 0; u < tableSize; u++) { tableSize 160 lib/zstd/fse_decompress.c tableDecode[u].newState = (U16)((nextState << tableDecode[u].nbBits) - tableSize); tableSize 193 lib/zstd/fse_decompress.c const unsigned tableSize = 1 << nbBits; tableSize 194 lib/zstd/fse_decompress.c const unsigned tableMask = tableSize - 1;