| 212 | } |
| 213 | |
| 214 | FORY_ALWAYS_INLINE void increase_reader_index(uint32_t diff, Error &error) { |
| 215 | if (FORY_PREDICT_FALSE(!ensure_readable(diff, error))) { |
| 216 | return; |
| 217 | } |
| 218 | reader_index_ += diff; |
| 219 | } |
| 220 | |
| 221 | // Unsafe methods don't check bound |
| 222 | FORY_ALWAYS_INLINE void unsafe_increase_reader_index(uint32_t diff) { |
no outgoing calls
no test coverage detected