Home
last modified time | relevance | path

Searched refs:nstrings (Results 1 – 3 of 3) sorted by relevance

/freebsd/stand/common/
H A Dinterp_forth.c75 int nstrings, i; in bf_command() local
100 nstrings = stackPopINT(vm->pStack); in bf_command()
101 for (i = 0, len = 0; i < nstrings; i++) in bf_command()
106 if (nstrings) in bf_command()
107 for (i = 0; i < nstrings; i++) { in bf_command()
/freebsd/crypto/krb5/src/plugins/kdb/test/
H A Dkdb_test.c233 int32_t *ks_list_sizes, nstrings, nkeys, i, j; in make_keys() local
238 for (nstrings = 0; strings[nstrings] != NULL; nstrings++); in make_keys()
239 ks_lists = ealloc(nstrings * sizeof(*ks_lists)); in make_keys()
240 ks_list_sizes = ealloc(nstrings * sizeof(*ks_list_sizes)); in make_keys()
241 kvnos = ealloc(nstrings * sizeof(*kvnos)); in make_keys()
246 for (i = 0; i < nstrings; i++) { in make_keys()
263 for (i = 0; i < nstrings; i++) { in make_keys()
278 for (i = 0; i < nstrings; i++) in make_keys()
/freebsd/lib/libc/gen/
H A Dwordexp.c137 char *nstrings; /* Temporary for realloc() */ in we_askshell() local
242 if ((nstrings = realloc(we->we_strings, we->we_nbytes)) == NULL) { in we_askshell()
248 we->we_wordv[i] += nstrings - we->we_strings; in we_askshell()
249 we->we_strings = nstrings; in we_askshell()