Home | History | Annotate | Download | only in lib

Lines Matching refs:pat_len

28 static reg_errcode_t init_dfa (re_dfa_t *dfa, size_t pat_len);
853 /* Initialize DFA. We use the length of the regular expression PAT_LEN
857 init_dfa (re_dfa_t *dfa, size_t pat_len)
881 if (BE (SIZE_MAX / max_object_size / 2 <= pat_len, 0))
884 dfa->nodes_alloc = pat_len + 1;
887 /* table_size = 2 ^ ceil(log pat_len) */
889 if (table_size > pat_len)