| 50 | sonic_force_inline int QuoteIndex() { return TrailingZeroes(quote_bits); } |
| 51 | sonic_force_inline int BsIndex() { return TrailingZeroes(bs_bits); } |
| 52 | sonic_force_inline int UnescapedIndex() { |
| 53 | return TrailingZeroes(unescaped_bits); |
| 54 | } |
| 55 | |
| 56 | uint32_t bs_bits; |
| 57 | uint32_t quote_bits; |
nothing calls this directly
no test coverage detected