Home | History | Annotate | Download | only in libxml2

Lines Matching refs:inlen

5566  * @inlen:  the size of the input (in), the size read from it (out)
5577 xmlBase64Decode(const unsigned char *in, unsigned long *inlen,
5604 if ((in == NULL) || (inlen == NULL) || (to == NULL) || (tolen == NULL))
5610 inmax = *inlen;
5683 *inlen = inblk;
5702 unsigned long inlen = strlen(input);
5713 ret = xmlBase64Decode(input, &inlen, output, &outlen);
5716 printf("ret: %d, inlen: %ld , outlen: %ld, output: '%s'\n", ret, inlen,
5725 while (cons < inlen) {
5727 tmp2 = inlen - cons;
5744 while (cons < inlen) {
5746 tmp2 = inlen - cons;