Home
last modified time | relevance | path

Searched refs:ndst (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/netbsd-tests/lib/libc/locale/
H A Dt_iconv.c51 size_t ndst; member
146 size_t nsrc, size_t ndst) in test_sample_bounded() argument
157 ATF_REQUIRE_MSG(S->ndst < sizeof(outbuf) - 2, "[%s]", title); in test_sample_bounded()
165 dstleft = dstleft0 = ndst; in test_sample_bounded()
186 (error != E2BIG || ndst == S->ndst)) { in test_sample_bounded()
210 if (memcmp(dst0, S->dst, MIN(ndst, dstleft0 - dstleft)) != 0) { in test_sample_bounded()
219 for (k = 0; k < ndst; k++) in test_sample_bounded()
223 for (k = 0; k < ndst; k++) in test_sample_bounded()
233 if (dst0[ndst] != outguard) { in test_sample_bounded()
236 title, ndst, dst0[ndst], outguard); in test_sample_bounded()
[all …]
/freebsd/bin/ps/
H A Dps.c1100 int dst, lvl, maxlvl, n, ndst, nsrc, siblings, src; in descendant_sort() local
1131 for (ndst = 1; dst + ndst < items; ndst++) in descendant_sort()
1132 if (ki[dst + ndst].ki_d.level <= ki[dst].ki_d.level) in descendant_sort()
1145 (dst - src + ndst - 1) * sizeof *ki); in descendant_sort()
1146 ki[dst + ndst - 1] = kn; in descendant_sort()
1149 ndst++; in descendant_sort()
1150 } else if (src != dst + ndst) { in descendant_sort()
1152 memmove(ki + dst + ndst + 1, ki + dst + ndst, in descendant_sort()
1153 (src - dst - ndst) * sizeof *ki); in descendant_sort()
1154 ki[dst + ndst] = kn; in descendant_sort()
[all …]
/freebsd/contrib/lib9p/backend/
H A Dfs.c2832 struct stat odst, ndst, fst; in fs_renameat() local
2870 if (fstatat(nff->ff_dirfd, nff->ff_name, &ndst, AT_SYMLINK_NOFOLLOW) != 0) in fs_renameat()
2872 if (!S_ISDIR(ndst.st_mode)) in fs_renameat()
2885 nff->ff_acl, &ndst, NULL, NULL, nff->ff_ai, (gid_t)-1); in fs_renameat()
/freebsd/crypto/openssh/
H A Dservconf.c3830 copy_server_option_strarray_values(char ***dst, u_int ndst, in copy_server_option_strarray_values() argument
3837 for (i = 0; i < ndst; i++) in copy_server_option_strarray_values()
3846 copy_server_option_strarray(char ***dst, u_int *ndst, in copy_server_option_strarray() argument
3851 copy_server_option_strarray_values(dst, *ndst, src, nsrc); in copy_server_option_strarray()
3852 *ndst = nsrc; in copy_server_option_strarray()