Home
last modified time | relevance | path

Searched refs:newlist (Results 1 – 10 of 10) 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.c1148 void *newlist; in expand_list() local
1152 newlist = realloc(inf->l.ptr, newmax * inf->elemsize); in expand_list()
1153 if (newlist == NULL) { in expand_list()
1158 inf->l.ptr = newlist; in expand_list()
1160 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/contrib/openzfs/module/zfs/
H A Ddmu_objset.c1589 multilist_t *newlist = &dn->dn_objset->os_synced_dnodes; in dmu_objset_sync_dnodes() local
1590 (void) dnode_add_ref(dn, newlist); in dmu_objset_sync_dnodes()
1591 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;