/external/zlib/src/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 | 794 unsigned long *destlen, /* amount of output space */ in puff() argument 804 s.outlen = *destlen; /* ignored if dest is NIL */ in puff() 836 *destlen = s.outcnt; in puff()
|
/external/chromium_org/third_party/libxslt/libexslt/ |
D | crypto.c | 147 char *dest, unsigned int destlen) in exsltCryptoCryptoApiCreateHash() argument 150 DWORD dwHashLen = destlen; in exsltCryptoCryptoApiCreateHash() 210 unsigned char *dest, int destlen) { in exsltCryptoCryptoApiRc4Encrypt() argument 217 if (msglen > destlen) { in exsltCryptoCryptoApiRc4Encrypt() 261 unsigned char *dest, int destlen) { in exsltCryptoCryptoApiRc4Decrypt() argument 268 if (msglen > destlen) { in exsltCryptoCryptoApiRc4Decrypt() 377 unsigned char *dest, int destlen) { in exsltCryptoGcryptRc4Encrypt() argument 400 rc = gcry_cipher_encrypt (cipher, (unsigned char *) dest, destlen, in exsltCryptoGcryptRc4Encrypt() 416 unsigned char *dest, int destlen) { in exsltCryptoGcryptRc4Decrypt() argument 439 rc = gcry_cipher_decrypt (cipher, (unsigned char *) dest, destlen, in exsltCryptoGcryptRc4Decrypt()
|
/external/clang/test/Analysis/ |
D | bstring.c | 39 size_t destlen); 159 size_t destlen); 279 void *__memmove_chk(void *s1, const void *s2, size_t n, size_t destlen);
|
D | string.c | 254 char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen); 313 char *__stpcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen); 352 char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen); 449 char *__strncpy_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen); 541 char *__strncat_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen);
|
D | security-syntax-checks.m | 127 char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen); 151 char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen);
|
/external/valgrind/main/shared/ |
D | vg_replace_strmem.c | 1153 (void *dstV, const void *srcV, SizeT n, SizeT destlen); \ 1155 (void *dstV, const void *srcV, SizeT n, SizeT destlen) \ 1160 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()
|