1 write to _codeLengthArray
System.IO.Compression (1)
System\IO\Compression\DeflateManaged\HuffmanTree.cs (1)
53_codeLengthArray = codeLengths;
10 references to _codeLengthArray
System.IO.Compression (10)
System\IO\Compression\DeflateManaged\HuffmanTree.cs (10)
55if (_codeLengthArray.Length == MaxLiteralTreeElements) 71_left = new short[2 * _codeLengthArray.Length]; 72_right = new short[2 * _codeLengthArray.Length]; 119foreach (int codeLength in _codeLengthArray) 135for (int i = 0; i < _codeLengthArray.Length; i++) 137int len = _codeLengthArray[i]; 155short avail = (short)_codeLengthArray.Length; 157for (int ch = 0; ch < _codeLengthArray.Length; ch++) 160int len = _codeLengthArray[ch]; 293int codeLength = _codeLengthArray[symbol];