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