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