| 530 | |
| 531 | template <typename T> |
| 532 | inline int32_t RleBatchDecoder<T>::NextNumLiterals() { |
| 533 | if (literal_count_ > 0) return literal_count_; |
| 534 | if (repeat_count_ == 0) NextCounts(); |
| 535 | return literal_count_; |
| 536 | } |
| 537 | |
| 538 | template <typename T> |
| 539 | inline bool RleBatchDecoder<T>::GetLiteralValues( |
no outgoing calls