Lines Matching refs:inlen
5500 * @inlen: the size of the input (in), the size read from it (out)
5511 xmlBase64Decode(const unsigned char *in, unsigned long *inlen,
5526 if ((in == NULL) || (inlen == NULL) || (to == NULL) || (tolen == NULL))
5532 inmax = *inlen;
5604 *inlen = inblk;
5617 unsigned long inlen = strlen(input);
5625 ret = xmlBase64Decode(input, &inlen, output, &outlen);
5628 printf("ret: %d, inlen: %ld , outlen: %ld, output: '%s'\n", ret, inlen, outlen, output);
5635 while (cons < inlen) {
5637 tmp2 = inlen - cons;
5653 while (cons < inlen) {
5655 tmp2 = inlen - cons;