| /freebsd/crypto/krb5/src/util/support/ |
| H A D | dir_filenames.c | 49 char **newlist; in add_filename() local 51 newlist = realloc(*fnames, (*n_fnames + 2) * sizeof(*newlist)); in add_filename() 52 if (newlist == NULL) in add_filename() 54 *fnames = newlist; in add_filename() 55 newlist[*n_fnames] = strdup(name); in add_filename() 56 if (newlist[*n_fnames] == NULL) in add_filename() 59 newlist[*n_fnames] = NULL; in add_filename()
|
| /freebsd/crypto/krb5/src/lib/krb5/krb/ |
| H A D | padata.c | 86 krb5_pa_data **newlist; in k5_add_pa_data_element() local 90 newlist = realloc(*list, (count + 2) * sizeof(*newlist)); in k5_add_pa_data_element() 91 if (newlist == NULL) in k5_add_pa_data_element() 93 newlist[count] = *pa; in k5_add_pa_data_element() 94 newlist[count + 1] = NULL; in k5_add_pa_data_element() 96 *list = newlist; in k5_add_pa_data_element()
|
| H A D | vfy_increds.c | 205 krb5_principal *newlist; in add_princ_list() local 213 newlist = realloc(*plist, (i + 2) * sizeof(*newlist)); in add_princ_list() 214 if (newlist == NULL) in add_princ_list() 216 *plist = newlist; in add_princ_list() 217 newlist[i] = newlist[i + 1] = NULL; /* terminate the list */ in add_princ_list() 218 return krb5_copy_principal(context, princ, &newlist[i]); in add_princ_list()
|
| /freebsd/crypto/openssl/Configurations/ |
| H A D | gentemplate.pm | 91 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 D | zfs_destroy_common.kshlib | 119 typeset newlist="" 132 newlist="$newlist $dtst" 138 for i in $newlist; do
|
| /freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/ |
| H A D | zfs_destroy_common.kshlib | 149 typeset newlist="" 162 newlist="$newlist $dtst" 166 log_must eval "$funname $newlist"
|
| /freebsd/crypto/krb5/src/plugins/preauth/pkinit/ |
| H A D | pkinit_identity.c | 51 char **newlist; in copy_list() local 62 newlist = calloc(1, (i + 1) * sizeof(*newlist)); in copy_list() 63 if (newlist == NULL) in copy_list() 67 newlist[i] = strdup(src[i]); in copy_list() 68 if (newlist[i] == NULL) in copy_list() 71 newlist[i] = NULL; in copy_list() 72 *dst = newlist; in copy_list() 75 free_list(newlist); in copy_list()
|
| /freebsd/crypto/krb5/src/util/profile/ |
| H A D | prof_get.c | 78 char *newstr, **newlist; in add_to_list() local 83 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list() 84 if (newlist == 0) in add_to_list() 87 list->list = newlist; in add_to_list()
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_set_format_cpio_odc.c | 209 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 D | archive_write_set_format_cpio_binary.c | 312 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 D | ps.c | 1208 void *newlist; in expand_list() local 1212 newlist = realloc(inf->l.ptr, newmax * inf->elemsize); in expand_list() 1213 if (newlist == NULL) { in expand_list() 1218 inf->l.ptr = newlist; in expand_list() 1220 return (newlist); in expand_list()
|
| /freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ |
| H A D | ldap_misc.c | 647 char **dnlist = NULL, **newlist; in decode_tl_data() local 686 newlist = realloc(dnlist, (linkcount + 2) * sizeof(char *)); in decode_tl_data() 687 if (newlist == NULL) in decode_tl_data() 689 dnlist = newlist; in decode_tl_data()
|
| /freebsd/contrib/arm-optimized-routines/math/tools/ |
| H A D | remez.jl | 572 newlist = vcat(oldlist, [(x,y)]) 573 candidate = (newscore, newlist)
|
| /freebsd/sbin/ipf/common/ |
| H A D | ipf_y.y | 63 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 D | dmu_objset.c | 1488 multilist_t *newlist = &dn->dn_objset->os_synced_dnodes; in dmu_objset_sync_dnodes() local 1489 (void) dnode_add_ref(dn, newlist); in dmu_objset_sync_dnodes() 1490 multilist_insert(newlist, dn); in dmu_objset_sync_dnodes()
|
| /freebsd/contrib/sendmail/src/ |
| H A D | queue.c | 3251 WORK *newlist = (WORK *) sm_realloc((char *) WorkList, local 3254 if (newlist != NULL) 3257 WorkList = newlist;
|