Lines Matching refs:CurrentDepth
72 for (size_t CurrentDepth = 0; CurrentDepth < UnpackedSize; CurrentDepth++) { in pack() local
73 uintptr_t Diff = Unpacked[CurrentDepth]; in pack()
74 if (CurrentDepth > 0) in pack()
75 Diff -= Unpacked[CurrentDepth - 1]; in pack()
89 size_t CurrentDepth; in unpack() local
91 for (CurrentDepth = 0; CurrentDepth < UnpackedMaxSize; CurrentDepth++) { in unpack()
99 Unpacked[CurrentDepth] = zigzagDecode(EncodedDiff); in unpack()
100 if (CurrentDepth > 0) in unpack()
101 Unpacked[CurrentDepth] += Unpacked[CurrentDepth - 1]; in unpack()
104 if (Index != PackedSize && CurrentDepth != UnpackedMaxSize) in unpack()
107 return CurrentDepth; in unpack()