Return how many bytes used to encode a gamma value */
| 535 | |
| 536 | /** Return how many bytes used to encode a gamma value */ |
| 537 | static inline uint SlGetGammaLength(size_t i) |
| 538 | { |
| 539 | return 1 + (i >= (1 << 7)) + (i >= (1 << 14)) + (i >= (1 << 21)) + (i >= (1 << 28)); |
| 540 | } |
| 541 | |
| 542 | static inline uint SlReadSparseIndex() |
| 543 | { |