Home | History | Annotate | Download | only in libxml2

Lines Matching defs:out

1332     xmlChar *out;
1334 out = xmlSaveUri(uri);
1335 if (out != NULL) {
1336 fprintf(stream, "%s", (char *) out);
1337 xmlFree(out);
1412 char *cur, *out;
1427 out = cur;
1456 (out++)[0] = (cur++)[0];
1462 (out++)[0] = (cur++)[0];
1465 out[0] = '\0';
1558 out[0] = '\0';
1578 out = path;
1580 (out++)[0] = (cur++)[0];
1581 out[0] = 0;
1612 char *ret, *out;
1629 out = ret;
1634 *out = (*in - '0');
1636 *out = (*in - 'a') + 10;
1638 *out = (*in - 'A') + 10;
1641 *out = *out * 16 + (*in - '0');
1643 *out = *out * 16 + (*in - 'a') + 10;
1645 *out = *out * 16 + (*in - 'A') + 10;
1648 out++;
1650 *out++ = *in++;
1654 *out = 0;
1673 int len, out;
1689 out = 0;
1691 if (len - out <= 3) {
1705 ret[out++] = '%';
1708 ret[out++] = '0' + val;
1710 ret[out++] = 'A' + val - 0xA;
1713 ret[out++] = '0' + val;
1715 ret[out++] = 'A' + val - 0xA;
1718 ret[out++] = *in++;
1722 ret[out] = 0;
1883 int ret, len, indx, cur, out;
2069 out = 0;
2078 while (out < cur) {
2079 res->path[out] = bas->path[out];
2080 out++;
2084 res->path[out] = 0;
2095 if ((out == 0) && (bas->server != NULL))
2096 res->path[out++] = '/';
2098 res->path[out++] = ref->path[indx++];
2101 res->path[out] = 0;
2467 if (uri == NULL) { /* Guard against 'out of memory' */
2478 xmlFreeURI(uri); /* Guard agains 'out of memory' */