Searched refs:next_si (Results 1 - 1 of 1) sorted by relevance
/third_party/rust/crates/regex/src/ |
H A D | dfa.rs | 600 let (mut prev_si, mut next_si) = (self.start, self.start); in exec_at() 613 // and `next_si` always represents the next state after the loop in exec_at() 615 while next_si <= STATE_MAX && at < text.len() { in exec_at() 616 // Argument for safety is in the definition of next_si. in exec_at() 617 prev_si = unsafe { self.next_si(next_si, text, at) }; in exec_at() 620 mem::swap(&mut prev_si, &mut next_si); in exec_at() 623 next_si = unsafe { self.next_si(prev_si, text, at) }; in exec_at() 625 if next_si > STATE_MA in exec_at() 853 unsafe fn next_si(&self, si: StatePtr, text: &[u8], i: usize) -> StatePtr { next_si() functions [all...] |
Completed in 2 milliseconds