Searched refs:dstsize (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/crypto/openssh/
H A Dloginrec.h125 char *line_fullname(char *dst, const char *src, u_int dstsize);
126 char *line_stripname(char *dst, const char *src, int dstsize);
127 char *line_abbrevname(char *dst, const char *src, int dstsize);
H A Dloginrec.c560 line_fullname(char *dst, const char *src, u_int dstsize) argument
562 memset(dst, '\0', dstsize);
563 if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5)))
564 strlcpy(dst, src, dstsize);
566 strlcpy(dst, "/dev/", dstsize);
567 strlcat(dst, src, dstsize);
574 line_stripname(char *dst, const char *src, int dstsize) argument
576 memset(dst, '\0', dstsize);
578 strlcpy(dst, src + 5, dstsize);
580 strlcpy(dst, src, dstsize);
593 line_abbrevname(char *dst, const char *src, int dstsize) argument
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dtc.str.c214 static size_t dstsize = 0; local
221 dstsize = MALLOC_INCR;
222 sdst = xmalloc((dstsize + MALLOC_SURPLUS) * sizeof(char));
225 edst = &dst[dstsize];
233 dstsize += MALLOC_INCR;
234 sdst = xrealloc(sdst, (dstsize + MALLOC_SURPLUS) * sizeof(char));
235 edst = &sdst[dstsize];
524 static size_t dstsize = 0; local
531 dstsize = MALLOC_INCR;
532 sdst = xmalloc((dstsize
[all...]
/freebsd-9.3-release/lib/libc/nameser/
H A Dns_samedomain.c170 ns_makecanon(const char *src, char *dst, size_t dstsize) { argument
173 if (n + sizeof "." > dstsize) { /*%< Note: sizeof == 2 */
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cg.c471 size_t dstsize = dt_node_type_size(dst); local
478 if (dstsize == srcsize &&
481 if (dstsize > srcsize && (src->dn_flags & DT_NF_SIGNED) == 0)
486 if (dstsize > srcsize) {
488 int s = (dstsize - srcsize) * NBBY;
512 } else if (dstsize != sizeof (uint64_t)) {
513 int n = sizeof (uint64_t) * NBBY - dstsize * NBBY;
H A Ddt_parser.c1879 size_t dstsize = dt_node_type_size(lp); local
1881 if (dstsize < srcsize) {
1882 int n = (sizeof (uint64_t) - dstsize) * NBBY;
1885 } else if (dstsize > srcsize) {
1887 int s = (dstsize - srcsize) * NBBY;

Completed in 93 milliseconds