Home | History | Annotate | Download | only in lib

Lines Matching defs:new_entry

4282       struct re_backref_cache_entry* new_entry;
4283 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry,
4285 if (BE (new_entry == NULL, 0))
4290 mctx->bkref_ents = new_entry;
4381 re_sub_match_last_t *new_entry;
4393 new_entry = calloc (1, sizeof (re_sub_match_last_t));
4394 if (BE (new_entry != NULL, 1))
4396 subtop->lasts[subtop->nlasts] = new_entry;
4397 new_entry->node = node;
4398 new_entry->str_idx = str_idx;
4401 return new_entry;