1 write to codeLengthArray
System (1)
sys\System\IO\compression\HuffmanTree.cs (1)
65codeLengthArray = codeLengths;
10 references to codeLengthArray
System (10)
sys\System\IO\compression\HuffmanTree.cs (10)
67if (codeLengthArray.Length == MaxLiteralTreeElements) { // bits for Literal/Length tree table 111foreach( int codeLength in codeLengthArray) { 124for (int i = 0; i < codeLengthArray.Length; i++) { 125int len = codeLengthArray[i]; 145left = new short[2* codeLengthArray.Length]; 146right = new short[2* codeLengthArray.Length]; 147short avail = (short)codeLengthArray.Length; 149for (int ch = 0; ch < codeLengthArray.Length; ch++) { 151int len = codeLengthArray[ch]; 265int codeLength = codeLengthArray[symbol];