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)
55
if (
_codeLengthArray
.Length == MaxLiteralTreeElements)
71
_left = new short[2 *
_codeLengthArray
.Length];
72
_right = new short[2 *
_codeLengthArray
.Length];
119
foreach (int codeLength in
_codeLengthArray
)
135
for (int i = 0; i <
_codeLengthArray
.Length; i++)
137
int len =
_codeLengthArray
[i];
155
short avail = (short)
_codeLengthArray
.Length;
157
for (int ch = 0; ch <
_codeLengthArray
.Length; ch++)
160
int len =
_codeLengthArray
[ch];
293
int codeLength =
_codeLengthArray
[symbol];