Lines Matching defs:out
1333 xmlChar *out;
1335 out = xmlSaveUri(uri);
1336 if (out != NULL) {
1337 fprintf(stream, "%s", (char *) out);
1338 xmlFree(out);
1413 char *cur, *out;
1428 out = cur;
1457 (out++)[0] = (cur++)[0];
1463 (out++)[0] = (cur++)[0];
1466 out[0] = '\0';
1559 out[0] = '\0';
1579 out = path;
1581 (out++)[0] = (cur++)[0];
1582 out[0] = 0;
1613 char *ret, *out;
1630 out = ret;
1635 *out = (*in - '0');
1637 *out = (*in - 'a') + 10;
1639 *out = (*in - 'A') + 10;
1642 *out = *out * 16 + (*in - '0');
1644 *out = *out * 16 + (*in - 'a') + 10;
1646 *out = *out * 16 + (*in - 'A') + 10;
1649 out++;
1651 *out++ = *in++;
1655 *out = 0;
1674 int len, out;
1690 out = 0;
1692 if (len - out <= 3) {
1706 ret[out++] = '%';
1709 ret[out++] = '0' + val;
1711 ret[out++] = 'A' + val - 0xA;
1714 ret[out++] = '0' + val;
1716 ret[out++] = 'A' + val - 0xA;
1719 ret[out++] = *in++;
1723 ret[out] = 0;
1884 int ret, len, indx, cur, out;
2070 out = 0;
2079 while (out < cur) {
2080 res->path[out] = bas->path[out];
2081 out++;
2085 res->path[out] = 0;
2096 if ((out == 0) && (bas->server != NULL))
2097 res->path[out++] = '/';
2099 res->path[out++] = ref->path[indx++];
2102 res->path[out] = 0;
2468 if (uri == NULL) { /* Guard against 'out of memory' */
2479 xmlFreeURI(uri); /* Guard agains 'out of memory' */