| 508 | |
| 509 | template <typename T> |
| 510 | inline int32_t RleBatchDecoder<T>::NextNumRepeats() { |
| 511 | if (repeat_count_ > 0) return repeat_count_; |
| 512 | if (literal_count_ == 0) NextCounts(); |
| 513 | return repeat_count_; |
| 514 | } |
| 515 | |
| 516 | template <typename T> |
| 517 | inline T RleBatchDecoder<T>::GetRepeatedValue(int32_t num_repeats_to_consume) { |
no outgoing calls