Home
last modified time | relevance | path

Searched refs:destlen (Results 1 – 9 of 9) sorted by relevance

/external/zlib/contrib/puff/
Dpufftest.c95 unsigned long sourcelen, destlen; in main() local
137 ret = puff(NIL, &destlen, source + skip, &sourcelen); in main()
141 fprintf(stderr, "puff() succeeded uncompressing %lu bytes\n", destlen); in main()
149 destlen >>= 1; in main()
150 dest = malloc(destlen); in main()
156 puff(dest, &destlen, source + skip, &sourcelen); in main()
158 fwrite(dest, 1, destlen, stdout); in main()
DREADME33 unsigned long *destlen, /* amount of output space */
44 If destlen is not enough space for the uncompressed data, then inflate will
45 return an error without writing more than destlen bytes. Note that this means
51 the initial value of *destlen is ignored and *destlen is set to the length of
62 *destlen is updated to the size of the uncompressed data. See the comments
Dpuff.h33 unsigned long *destlen, /* amount of output space */
Dpuff.c791 unsigned long *destlen, /* amount of output space */ in puff() argument
801 s.outlen = *destlen; /* ignored if dest is NIL */ in puff()
833 *destlen = s.outcnt; in puff()
/external/clang/test/Analysis/
Dbstring.c37 size_t destlen);
159 size_t destlen);
280 void *__memmove_chk(void *s1, const void *s2, size_t n, size_t destlen);
Dstring.c276 char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen);
336 char *__stpcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen);
380 char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen);
489 char *__strncpy_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen);
588 char *__strncat_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen);
Dsecurity-syntax-checks.m126 char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen);
150 char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen);
/external/valgrind/main/memcheck/
Dmc_replace_strmem.c1031 (void *dstV, const void *srcV, SizeT n, SizeT destlen); \
1033 (void *dstV, const void *srcV, SizeT n, SizeT destlen) \
1038 if (destlen < n) \
/external/libmtp/src/
Dptp-pack.c109 size_t nconv, srclen, destlen; in ptp_unpack_string() local
126 destlen = sizeof(loclstr)-1; in ptp_unpack_string()
130 &dest, &destlen); in ptp_unpack_string()