tableMask          95 lib/zstd/fse_compress.c 	U32 const tableMask = tableSize - 1;
tableMask         147 lib/zstd/fse_compress.c 				position = (position + step) & tableMask;
tableMask         149 lib/zstd/fse_compress.c 					position = (position + step) & tableMask; /* Low proba area */
tableMask         669 lib/zstd/fse_compress.c 	const unsigned tableMask = tableSize - 1;
tableMask         670 lib/zstd/fse_compress.c 	const unsigned maxSymbolValue = tableMask;
tableMask         137 lib/zstd/fse_decompress.c 		U32 const tableMask = tableSize - 1;
tableMask         144 lib/zstd/fse_decompress.c 				position = (position + step) & tableMask;
tableMask         146 lib/zstd/fse_decompress.c 					position = (position + step) & tableMask; /* lowprob area */
tableMask         194 lib/zstd/fse_decompress.c 	const unsigned tableMask = tableSize - 1;
tableMask         195 lib/zstd/fse_decompress.c 	const unsigned maxSV1 = tableMask + 1;