Home | History | Annotate | Download | only in libxml2

Lines Matching defs:out

1330     xmlChar *out;
1332 out = xmlSaveUri(uri);
1333 if (out != NULL) {
1334 fprintf(stream, "%s", (char *) out);
1335 xmlFree(out);
1410 char *cur, *out;
1425 out = cur;
1454 (out++)[0] = (cur++)[0];
1460 (out++)[0] = (cur++)[0];
1463 out[0] = '\0';
1556 out[0] = '\0';
1576 out = path;
1578 (out++)[0] = (cur++)[0];
1579 out[0] = 0;
1610 char *ret, *out;
1627 out = ret;
1632 *out = (*in - '0');
1634 *out = (*in - 'a') + 10;
1636 *out = (*in - 'A') + 10;
1639 *out = *out * 16 + (*in - '0');
1641 *out = *out * 16 + (*in - 'a') + 10;
1643 *out = *out * 16 + (*in - 'A') + 10;
1646 out++;
1648 *out++ = *in++;
1652 *out = 0;
1671 int len, out;
1687 out = 0;
1689 if (len - out <= 3) {
1703 ret[out++] = '%';
1706 ret[out++] = '0' + val;
1708 ret[out++] = 'A' + val - 0xA;
1711 ret[out++] = '0' + val;
1713 ret[out++] = 'A' + val - 0xA;
1716 ret[out++] = *in++;
1720 ret[out] = 0;
1881 int ret, len, indx, cur, out;
2067 out = 0;
2076 while (out < cur) {
2077 res->path[out] = bas->path[out];
2078 out++;
2082 res->path[out] = 0;
2093 if ((out == 0) && (bas->server != NULL))
2094 res->path[out++] = '/';
2096 res->path[out++] = ref->path[indx++];
2099 res->path[out] = 0;
2465 if (uri == NULL) { /* Guard against 'out of memory' */
2476 xmlFreeURI(uri); /* Guard agains 'out of memory' */