Lines Matching refs:fastmap
27 char *fastmap);
270 char *fastmap = bufp->re_fastmap; in weak_alias() local
272 memset (fastmap, '\0', sizeof (char) * SBC_MAX); in weak_alias()
273 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap); in weak_alias()
275 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap); in weak_alias()
277 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap); in weak_alias()
279 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap); in weak_alias()
289 re_set_fastmap (char *fastmap, bool icase, int ch) in weak_alias()
291 fastmap[ch] = 1; in weak_alias()
293 fastmap[tolower (ch)] = 1; in weak_alias()
301 char *fastmap) in re_compile_fastmap_iter() argument
313 re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c); in re_compile_fastmap_iter()
333 re_set_fastmap (fastmap, false, buf[0]); in re_compile_fastmap_iter()
343 re_set_fastmap (fastmap, icase, ch); in re_compile_fastmap_iter()
366 re_set_fastmap (fastmap, icase, i); in re_compile_fastmap_iter()
372 re_set_fastmap (fastmap, icase, i); in re_compile_fastmap_iter()
381 re_set_fastmap (fastmap, icase, *(unsigned char *) buf); in re_compile_fastmap_iter()
386 re_set_fastmap (fastmap, false, *(unsigned char *) buf); in re_compile_fastmap_iter()
397 memset (fastmap, '\1', sizeof (char) * SBC_MAX); in re_compile_fastmap_iter()
657 char *fastmap; in re_comp() local
668 fastmap = re_comp_buf.re_fastmap; in re_comp()
672 re_comp_buf.re_fastmap = fastmap; in re_comp()