HomeSort by: relevance | last modified time | path
    Searched defs:dstlen (Results 1 - 19 of 19) sorted by relevancy

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
gzip.c 42 size_t dstlen = d_len; local
46 if (z_compress_level(d_start, &dstlen, s_start, s_len, n) != Z_OK) {
54 return (dstlen);
61 size_t dstlen = d_len; local
65 if (z_uncompress(d_start, &dstlen, s_start, s_len) != Z_OK)
  /src/lib/libintl/
gettext_iconv.c 121 size_t dstlen; local
186 dstlen = bufferlen;
187 nvalid = iconv(cd, __UNCONST(&src), &srclen, &dst, &dstlen);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_libc.cc 173 const uptr dstlen = internal_strnlen(dst, maxlen); local
174 if (dstlen == maxlen) return maxlen + srclen;
175 if (srclen < maxlen - dstlen) {
176 internal_memmove(dst + dstlen, src, srclen + 1);
178 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
181 return dstlen + srclen;
  /src/usr.bin/mail/
mime_header.c 96 size_t enclen, dstlen; local
129 dstlen = (to_cs ? sizeof(decword) : (size_t)(oend - *obuf)) - 1;
131 declen = mime_rfc2047_decode(enctype, dstend, dstlen, encword, enclen);
150 dstlen = oend - *obuf - 1;
151 cnt = mime_iconv(cd, &src, &srclen, &dstend, &dstlen);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_libc.cpp 182 const uptr dstlen = internal_strnlen(dst, maxlen); local
183 if (dstlen == maxlen) return maxlen + srclen;
184 if (srclen < maxlen - dstlen) {
185 internal_memmove(dst + dstlen, src, srclen + 1);
187 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
190 return dstlen + srclen;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_libc.cpp 173 const uptr dstlen = internal_strnlen(dst, maxlen); local
174 if (dstlen == maxlen) return maxlen + srclen;
175 if (srclen < maxlen - dstlen) {
176 internal_memmove(dst + dstlen, src, srclen + 1);
178 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
181 return dstlen + srclen;
  /src/external/cddl/osnet/dist/common/ctf/
ctf_open.c 812 size_t srclen, dstlen; local
828 dstlen = size;
830 if ((rc = z_uncompress(buf, &dstlen, src, srclen)) != Z_OK) {
836 if (dstlen != size) {
838 "bytes\n", (ulong_t)dstlen, (ulong_t)size);
  /src/sys/arch/vax/vax/
pmap.c 785 int srclen, dstlen; local
806 dstlen = vax_btoc(len)*PPTESZ;
811 from, to, srclen, dstlen));
815 memset(to+srclen, 0, dstlen-srclen);
  /src/usr.bin/sdpquery/
print.c 912 size_t dstlen; local
915 dstlen = sizeof(buf);
923 (void)iconv(ih, __UNCONST(&src), &srclen, &dst, &dstlen);
927 printf("\"%.*s%s\n", (int)(sizeof(buf) - dstlen), buf,
  /src/usr.sbin/makemandb/
apropos-utils.c 136 size_t totallen, dstlen; local
150 dstlen = strlen(mydst);
154 totallen = dstlen + srclen + 2;
159 mydst[dstlen++] = ' ';
162 memcpy(mydst + dstlen, src, srclen);
163 mydst[dstlen + srclen] = '\0';
  /src/external/gpl3/binutils/dist/libctf/
ctf-open.c 1589 uLongf dstlen; local
1606 dstlen = fp->ctf_size;
1609 if ((rc = uncompress (fp->ctf_base, &dstlen, src, srclen)) != Z_OK)
1617 if ((size_t) dstlen != fp->ctf_size)
1621 (unsigned long) dstlen, (unsigned long) fp->ctf_size);
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-open.c 1589 uLongf dstlen; local
1606 dstlen = fp->ctf_size;
1609 if ((rc = uncompress (fp->ctf_base, &dstlen, src, srclen)) != Z_OK)
1617 if ((size_t) dstlen != fp->ctf_size)
1621 (unsigned long) dstlen, (unsigned long) fp->ctf_size);
  /src/external/gpl3/gdb/dist/libctf/
ctf-open.c 1587 uLongf dstlen; local
1604 dstlen = fp->ctf_size;
1607 if ((rc = uncompress (fp->ctf_base, &dstlen, src, srclen)) != Z_OK)
1615 if ((size_t) dstlen != fp->ctf_size)
1619 (unsigned long) dstlen, (unsigned long) fp->ctf_size);
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-open.c 1510 uLongf dstlen; local
1527 dstlen = fp->ctf_size;
1530 if ((rc = uncompress (fp->ctf_base, &dstlen, src, srclen)) != Z_OK)
1538 if ((size_t) dstlen != fp->ctf_size)
1542 (unsigned long) dstlen, (unsigned long) fp->ctf_size);
  /src/external/bsd/ipf/dist/tools/
ipfstat.c 1302 int len, srclen, dstlen, forward = 1, c = 0; local
1355 srclen = dstlen = 0;
1426 if (dstlen < len)
1427 dstlen = len;
1602 if (dstlen < 15)
1603 dstlen = 15;
1610 srclen + 6, "Source IP", dstlen + 6, "Destination IP",
1639 printw("%-*s %-*s", srclen + 6, str1, dstlen + 6, str2);
  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-strlen.cc 3613 tree dstlen = dsi->nonzero_chars; local
3672 if (dsi && dstlen)
3674 tree type = TREE_TYPE (dstlen);
3680 tree dstsize = fold_build2 (PLUS_EXPR, type, dstlen, one);
3706 unshare_expr (dstlen)));
3713 unshare_expr (dstlen)));
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-strlen.cc 3621 tree dstlen = dsi->nonzero_chars; local
3680 if (dsi && dstlen)
3682 tree type = TREE_TYPE (dstlen);
3688 tree dstsize = fold_build2 (PLUS_EXPR, type, dstlen, one);
3714 unshare_expr (dstlen)));
3721 unshare_expr (dstlen)));
  /src/external/mpl/bind/dist/bin/dig/
dighost.c 121 idn_input(const char *src, char *dst, size_t dstlen);
4832 size_t srclen, dstlen; local
4859 dstlen = strlen(dst);
4860 if (isc_buffer_length(buffer) < start + dstlen) {
4864 memmove(isc_buffer_used(buffer), dst, dstlen); local
4865 isc_buffer_add(buffer, dstlen);
4874 * conversion result in 'dst', which is 'dstlen' bytes large.
4879 idn_input(const char *src, char *dst, size_t dstlen) {
4907 len = strlcpy(dst, ascii, dstlen);
4909 len = strlcpy(dst, src, dstlen);
    [all...]
  /src/lib/libc/time/
localtime.c 1719 ptrdiff_t stdlen, dstlen, charcnt; local
1762 dstlen = name - dstname;
1767 dstlen = name - dstname; /* length of DST abbr. */
1769 if (! (0 < dstlen && dstlen <= TZNAME_MAXIMUM))
1771 charcnt += dstlen + 1;
1968 dstlen = 0;
1978 if (dstlen != 0) {
1979 cp = mempcpy(cp, dstname, dstlen);

Completed in 66 milliseconds