Home
last modified time | relevance | path

Searched refs:dstlen (Results 1 – 21 of 21) sorted by relevance

/external/libcups/cups/
Dstring.c690 size_t dstlen; /* Length of destination string */ in _cups_strlcat() local
697 dstlen = strlen(dst); in _cups_strlcat()
699 if (size < (dstlen + 1)) in _cups_strlcat()
700 return (dstlen); /* No room, return immediately... */ in _cups_strlcat()
702 size -= dstlen + 1; in _cups_strlcat()
717 memmove(dst + dstlen, src, srclen); in _cups_strlcat()
718 dst[dstlen + srclen] = '\0'; in _cups_strlcat()
720 return (dstlen + srclen); in _cups_strlcat()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_libc.cc180 const uptr dstlen = internal_strnlen(dst, maxlen); in internal_strlcat() local
181 if (dstlen == maxlen) return maxlen + srclen; in internal_strlcat()
182 if (srclen < maxlen - dstlen) { in internal_strlcat()
183 internal_memmove(dst + dstlen, src, srclen + 1); in internal_strlcat()
185 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1); in internal_strlcat()
188 return dstlen + srclen; in internal_strlcat()
/external/u-boot/lib/
Dgunzip.c72 int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp) in gunzip() argument
79 return zunzip(dst, dstlen, src, lenp, 1, offset); in gunzip()
275 int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp, in zunzip() argument
293 s.avail_out = dstlen; in zunzip()
/external/u-boot/fs/jffs2/
Dcompr_rubin.c113 unsigned long sourcelen, unsigned long dstlen) in dynrubin_decompress() argument
121 rubin_do_decompress(bits, data_in+8, cpage_out, dstlen); in dynrubin_decompress()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dmemmove_chk-1.ll2 ; for dstlen and len.
16 ; Check cases where dstlen >= len.
40 ; Check cases where dstlen < len.
Dmemcpy_chk-1.ll2 ; for dstlen and len.
16 ; Check cases where dstlen >= len.
40 ; Check cases where dstlen < len.
Dstrncpy_chk-1.ll2 ; for len and dstlen.
12 ; Check cases where dstlen >= len
47 ; Check cases where dstlen < len
Dmemset_chk-1.ll2 ; for dstlen and len.
12 ; Check cases where dstlen >= len.
44 ; Check cases where dstlen < len.
/external/llvm/test/Transforms/InstCombine/
Dmemmove_chk-1.ll2 ; for dstlen and len.
16 ; Check cases where dstlen >= len.
40 ; Check cases where dstlen < len.
Dmemcpy_chk-1.ll2 ; for dstlen and len.
16 ; Check cases where dstlen >= len.
40 ; Check cases where dstlen < len.
Dstrncpy_chk-1.ll2 ; for len and dstlen.
12 ; Check cases where dstlen >= len
47 ; Check cases where dstlen < len
Dmemset_chk-1.ll2 ; for dstlen and len.
12 ; Check cases where dstlen >= len.
44 ; Check cases where dstlen < len.
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DParser.java560 int dstlen = 0; in expandEntities() local
563 dst[dstlen++] = ch; in expandEntities()
567 refStart = dstlen; in expandEntities()
583 int ent = lookupEntity(dst, refStart, dstlen - refStart - 1); in expandEntities()
589 dstlen = refStart + 1; in expandEntities()
593 dstlen = refStart; in expandEntities()
603 return new String(dst, 0, dstlen); in expandEntities()
/external/u-boot/include/jffs2/
Dcompr_rubin.h11 unsigned long sourcelen, unsigned long dstlen);
Djffs2.h225 unsigned long sourcelen, unsigned long dstlen);
/external/icu/icu4c/source/tools/tzcode/
Dlocaltime.c928 size_t dstlen; in tzparse() local
971 dstlen = name - dstname; in tzparse()
976 dstlen = name - dstname; /* length of DST zone name */ in tzparse()
1142 dstlen = 0; in tzparse()
1152 if (dstlen != 0) in tzparse()
1153 sp->charcnt += dstlen + 1; in tzparse()
1160 if (dstlen != 0) { in tzparse()
1161 (void) strncpy(cp, dstname, dstlen); in tzparse()
1162 *(cp + dstlen) = '\0'; in tzparse()
/external/u-boot/drivers/fpga/
Dzynqpl.c152 static int zynq_dma_transfer(u32 srcbuf, u32 srclen, u32 dstbuf, u32 dstlen) in zynq_dma_transfer() argument
161 writel(dstlen, &devcfg_base->dma_dst_len); in zynq_dma_transfer()
/external/blktrace/
Dblktrace.c1510 static int fill_ofname(char *dst, int dstlen, char *subdir, char *buts_name, in fill_ofname() argument
1517 len = snprintf(dst, dstlen, "%s/", output_dir); in fill_ofname()
1519 len = snprintf(dst, dstlen, "./"); in fill_ofname()
1522 len += snprintf(dst + len, dstlen - len, "%s", subdir); in fill_ofname()
1545 snprintf(dst + len, dstlen - len, "%s.blktrace.%d", in fill_ofname()
1548 snprintf(dst + len, dstlen - len, "%s.blktrace.%d", in fill_ofname()
/external/u-boot/include/
Dcommon.h436 int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,
/external/squashfs-tools/kernel-2.4/include/linux/
Dsquashfs_fs.h352 extern int squashfs_uncompress_block(void *d, int dstlen, void *s, int srclen);
/external/mdnsresponder/mDNSCore/
DmDNSEmbeddedAPI.h2563 mDNSexport mDNSu32 mDNSPlatformStrLCopy( void *dst, const void *src, mDNSu32 dstlen);