Searched refs:destlen (Results 1 – 9 of 9) sorted by relevance
/external/zlib/contrib/puff/ |
D | pufftest.c | 95 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()
|
D | README | 33 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
|
D | puff.h | 33 unsigned long *destlen, /* amount of output space */
|
D | puff.c | 791 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/ |
D | bstring.c | 37 size_t destlen); 159 size_t destlen); 280 void *__memmove_chk(void *s1, const void *s2, size_t n, size_t destlen);
|
D | string.c | 276 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);
|
D | security-syntax-checks.m | 126 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/ |
D | mc_replace_strmem.c | 1031 (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/ |
D | ptp-pack.c | 109 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()
|