Home
last modified time | relevance | path

Searched refs:new_entry (Results 1 – 5 of 5) sorted by relevance

/mirbsd/src/usr.bin/lex/
Dsym.c67 struct hash_entry *new_entry; local
81 new_entry = (struct hash_entry *)
84 if ( new_entry == NULL )
89 new_entry->next = successor;
90 successor->prev = new_entry;
93 new_entry->next = NULL;
95 new_entry->prev = NULL;
96 new_entry->name = sym;
97 new_entry->str_val = str_def;
98 new_entry->int_val = int_def;
[all …]
/mirbsd/src/usr.sbin/isdn/isdntel/
Dfiles.c104 register struct onefile *new_entry; in fill_list() local
118 if ((new_entry = (struct onefile *) malloc(sizeof(struct onefile))) == NULL) in fill_list()
125 if ((new_entry->fname = strdup(dp->d_name)) == NULL) in fill_list()
142 if ((new_entry->date = strdup(tmp)) == NULL) in fill_list()
157 if ((new_entry->time = strdup(tmp)) == NULL) in fill_list()
172 if ((new_entry->dstnumber = strdup(tmp)) == NULL) in fill_list()
187 if ((new_entry->srcnumber = strdup(tmp)) == NULL) in fill_list()
202 if ((new_entry->seconds = strdup(tmp)) == NULL) in fill_list()
209 new_entry->alias = get_alias(new_entry->srcnumber); in fill_list()
213 first = store(new_entry, first); in fill_list()
/mirbsd/src/sys/uvm/
Duvm_map.c574 vm_map_entry_t new_entry; local
587 new_entry = uvm_mapent_alloc(map);
588 uvm_mapent_copy(entry, new_entry); /* entry -> new_entry */
590 new_entry->end = start;
591 new_adj = start - new_entry->start;
598 if (new_entry->aref.ar_amap) {
599 amap_splitref(&new_entry->aref, &entry->aref, new_adj);
602 uvm_map_entry_link(map, entry->prev, new_entry);
606 uvm_map_reference(new_entry->object.sub_map);
633 vm_map_entry_t new_entry; local
[all …]
/mirbsd/src/gnu/usr.bin/cvs/lib/
Dregexec.c4199 struct re_backref_cache_entry* new_entry; in match_ctx_add_entry() local
4200 new_entry = re_x2realloc (mctx->bkref_ents, struct re_backref_cache_entry, in match_ctx_add_entry()
4202 if (BE (new_entry == NULL, 0)) in match_ctx_add_entry()
4207 mctx->bkref_ents = new_entry; in match_ctx_add_entry()
4298 re_sub_match_last_t *new_entry; in match_ctx_add_sublast() local
4310 new_entry = re_calloc (re_sub_match_last_t, 1); in match_ctx_add_sublast()
4311 if (BE (new_entry != NULL, 1)) in match_ctx_add_sublast()
4313 subtop->lasts[subtop->nlasts] = new_entry; in match_ctx_add_sublast()
4314 new_entry->node = node; in match_ctx_add_sublast()
4315 new_entry->str_idx = str_idx; in match_ctx_add_sublast()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/bfd/
Delf32-xtensa.c5455 property_table_entry *the_entry, *new_entry; in extend_ebb_bounds_forward() local
5496 new_entry = &ebb->ptbl[ebb->end_ptbl_idx + 1]; in extend_ebb_bounds_forward()
5497 if (((new_entry->flags & XTENSA_PROP_INSN) == 0) in extend_ebb_bounds_forward()
5498 || ((new_entry->flags & XTENSA_PROP_INSN_NO_TRANSFORM) != 0) in extend_ebb_bounds_forward()
5502 if (the_entry->address + the_entry->size != new_entry->address) in extend_ebb_bounds_forward()
5505 the_entry = new_entry; in extend_ebb_bounds_forward()
5517 new_entry = &ebb->ptbl[ebb->end_ptbl_idx + 1]; in extend_ebb_bounds_forward()
5518 if ((new_entry->flags & XTENSA_PROP_UNREACHABLE) != 0 in extend_ebb_bounds_forward()
5519 && the_entry->address + the_entry->size == new_entry->address) in extend_ebb_bounds_forward()
5520 ebb->ends_unreachable = new_entry; in extend_ebb_bounds_forward()
[all …]