Home
last modified time | relevance | path

Searched refs:newlist (Results 1 – 11 of 11) sorted by relevance

/freebsd/crypto/openssl/Configurations/
H A Dgentemplate.pm91 my @newlist = ();
102 push @newlist, $item, @resolved;
104 print STDERR "DEBUG[collectdepends] $thing < ", join(' ', @newlist), "\n"
106 @newlist;
159 my @newlist = ();
172 push @newlist, $item;
175 @newlist = map { $replace{$_} // $_; } @newlist;
176 print STDERR "DEBUG[reducedepends]< ", join(' ', @newlist), "\n"
178 @newlist;
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/
H A Dzfs_destroy_common.kshlib118 typeset newlist=""
131 newlist="$newlist $dtst"
137 for i in $newlist; do
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/
H A Dzfs_destroy_common.kshlib149 typeset newlist=""
162 newlist="$newlist $dtst"
166 log_must eval "$funname $newlist"
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_cpio_odc.c209 void *newlist = realloc(cpio->ino_list, in synthesize_ino_value() local
211 if (newlist == NULL) in synthesize_ino_value()
215 cpio->ino_list = newlist; in synthesize_ino_value()
H A Darchive_write_set_format_cpio_binary.c312 void *newlist = realloc(cpio->ino_list, in synthesize_ino_value() local
314 if (newlist == NULL) in synthesize_ino_value()
318 cpio->ino_list = newlist; in synthesize_ino_value()
/freebsd/bin/ps/
H A Dps.c1157 void *newlist; in expand_list() local
1161 newlist = realloc(inf->l.ptr, newmax * inf->elemsize); in expand_list()
1162 if (newlist == NULL) { in expand_list()
1167 inf->l.ptr = newlist; in expand_list()
1169 return (newlist); in expand_list()
/freebsd/contrib/arm-optimized-routines/math/tools/
H A Dremez.jl572 newlist = vcat(oldlist, [(x,y)])
573 candidate = (newscore, newlist)
/freebsd/sbin/ipf/common/
H A Dipf_y.y63 static int newlist = 0; variable
432 lstart: '{' { newlist = 1; fr = frc; added = 0; }
438 lmore: lanother { if (newlist == 1) {
439 newlist = 0;
/freebsd/sys/kern/
H A Dsubr_bus.c1195 device_t *newlist, *oldlist; in devclass_alloc_unit() local
1201 newlist = malloc(sizeof(device_t) * newsize, M_BUS, M_NOWAIT); in devclass_alloc_unit()
1202 if (!newlist) in devclass_alloc_unit()
1205 bcopy(oldlist, newlist, sizeof(device_t) * dc->maxunit); in devclass_alloc_unit()
1206 bzero(newlist + dc->maxunit, in devclass_alloc_unit()
1208 dc->devices = newlist; in devclass_alloc_unit()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu_objset.c1583 multilist_t *newlist = &dn->dn_objset->os_synced_dnodes; in dmu_objset_sync_dnodes() local
1584 (void) dnode_add_ref(dn, newlist); in dmu_objset_sync_dnodes()
1585 multilist_insert(newlist, dn); in dmu_objset_sync_dnodes()
/freebsd/contrib/sendmail/src/
H A Dqueue.c3251 WORK *newlist = (WORK *) sm_realloc((char *) WorkList, local
3254 if (newlist != NULL)
3257 WorkList = newlist;