If nice and chain are understood to be the tunable nice_length and max_chain parameters as defined in zlib, the constants look different from expectations. For example:
Since deo is indexed at level - 1, it would seem that deo[2] should be (32 << 13) | 32 (262176). The array would be unsorted in this case since the next level is (16 << 13) | 16 (131088)
deo
is described in source as:If
nice
andchain
are understood to be the tunablenice_length
andmax_chain
parameters as defined inzlib
, the constants look different from expectations. For example:Since
deo
is indexed atlevel - 1
, it would seem thatdeo[2]
should be(32 << 13) | 32
(262176). The array would be unsorted in this case since the next level is(16 << 13) | 16
(131088)