Searched refs:re_malloc (Results 1 – 4 of 4) sorted by relevance
/posix/ |
A D | regex_internal.c | 414 pstr->offsets = re_malloc (Idx, pstr->bufs_len); in build_wcs_upper_buffer() 973 set->elems = re_malloc (Idx, size); in re_node_set_alloc() 986 set->elems = re_malloc (Idx, 1); in re_node_set_init_1() 1001 set->elems = re_malloc (Idx, 2); in re_node_set_init_2() 1034 dest->elems = re_malloc (Idx, dest->alloc); in re_node_set_init_copy() 1151 dest->elems = re_malloc (Idx, dest->alloc); in re_node_set_init_union() 1722 re_node_set *entrance_nodes = re_malloc (re_node_set, 1); in create_cd_newstate()
|
A D | regcomp.c | 472 preg->fastmap = re_malloc (char, SBC_MAX); in regcomp() 691 re_comp_buf.fastmap = re_malloc (char, SBC_MAX); in re_comp() 770 dfa->re_str = re_malloc (char, length + 1); in re_compile_internal() 859 dfa->nodes = re_malloc (re_token_t, dfa->nodes_alloc); in init_dfa() 1169 dfa->nexts = re_malloc (Idx, dfa->nodes_alloc); in analyze() 1170 dfa->org_indices = re_malloc (Idx, dfa->nodes_alloc); in analyze() 1171 dfa->edests = re_malloc (re_node_set, dfa->nodes_alloc); in analyze() 1172 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc); in analyze() 1177 dfa->subexp_map = re_malloc (Idx, preg->re_nsub); in analyze() 1213 dfa->inveclosures = re_malloc (re_node_set, dfa->nodes_len); in analyze() [all …]
|
A D | regexec.c | 340 s = re_malloc (char, len); in weak_alias() 419 pmatch = re_malloc (regmatch_t, nregs); in re_search_stub() 472 regs->start = re_malloc (regoff_t, need_regs); in re_copy_regs() 475 regs->end = re_malloc (regoff_t, need_regs); in re_copy_regs() 663 mctx.state_log = re_malloc (re_dfastate_t *, mctx.input.bufs_len + 1); in re_search_internal() 923 sifted_states = re_malloc (re_dfastate_t *, match_last + 1); in prune_impossible_nodes() 931 lim_states = re_malloc (re_dfastate_t *, match_last + 1); in prune_impossible_nodes() 1340 fs->stack[num].regs = re_malloc (regmatch_t, 2 * nregs); in push_fail_stack() 1396 fs->stack = re_malloc (struct re_fail_stack_ent_t, fs->alloc); in set_regs() 4065 mctx->bkref_ents = re_malloc (struct re_backref_cache_entry, n); in match_ctx_init() [all …]
|
A D | regex_internal.h | 464 #define re_malloc(t,n) ((t *) malloc ((n) * sizeof (t))) macro
|
Completed in 23 milliseconds