| 190 | } |
| 191 | |
| 192 | static inline CHIMP_TYPE LoadFirst(DecompressState& state) { |
| 193 | CHIMP_TYPE result = state.input.template ReadValue<CHIMP_TYPE, sizeof(CHIMP_TYPE) * 8>(); |
| 194 | state.first = false; |
| 195 | state.reference_value = result; |
| 196 | return result; |
| 197 | } |
| 198 | |
| 199 | static inline CHIMP_TYPE DecompressValue(ChimpConstants::Flags flag, |
| 200 | uint8_t leading_zeros[], |
nothing calls this directly
no outgoing calls
no test coverage detected