2 writes to tableBits
System (2)
sys\System\IO\compression\HuffmanTree.cs (2)
68
tableBits
= 9;
71
tableBits
= 7;
8 references to tableBits
System (8)
sys\System\IO\compression\HuffmanTree.cs (8)
73
tableMask = (1 <<
tableBits
) -1;
138
table = new short[ 1 <<
tableBits
];
156
if (len <=
tableBits
) {
183
int locs = 1 << (
tableBits
- len);
192
int overflowBits = len -
tableBits
; // the nodes we need to respent the data.
193
int codeBitMask = 1 <<
tableBits
; // mask to get current bit (the bits can't fit in the table)
200
int index = start & ((1 <<
tableBits
) -1);
253
uint mask = (uint)1 <<
tableBits
;