Lines Matching refs:pos
307 unsigned int state = start, pos; in aa_dfa_match_len() local
318 pos = base_idx(base[state]) + equiv[(u8) *str++]; in aa_dfa_match_len()
319 if (check[pos] == state) in aa_dfa_match_len()
320 state = next[pos]; in aa_dfa_match_len()
327 pos = base_idx(base[state]) + (u8) *str++; in aa_dfa_match_len()
328 if (check[pos] == state) in aa_dfa_match_len()
329 state = next[pos]; in aa_dfa_match_len()
357 unsigned int state = start, pos; in aa_dfa_match() local
368 pos = base_idx(base[state]) + equiv[(u8) *str++]; in aa_dfa_match()
369 if (check[pos] == state) in aa_dfa_match()
370 state = next[pos]; in aa_dfa_match()
377 pos = base_idx(base[state]) + (u8) *str++; in aa_dfa_match()
378 if (check[pos] == state) in aa_dfa_match()
379 state = next[pos]; in aa_dfa_match()
405 unsigned int pos; in aa_dfa_next() local
413 pos = base_idx(base[state]) + equiv[(u8) c]; in aa_dfa_next()
414 if (check[pos] == state) in aa_dfa_next()
415 state = next[pos]; in aa_dfa_next()
420 pos = base_idx(base[state]) + (u8) c; in aa_dfa_next()
421 if (check[pos] == state) in aa_dfa_next()
422 state = next[pos]; in aa_dfa_next()