Home | History | Annotate | Download | only in Python

Lines Matching defs:outp

560         Py_UNICODE *outp;

609 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res); p < e;) {
621 *outp++ = '&';
622 *outp++ = '#';
652 *outp++ = '0' + ch/base;
656 *outp++ = ';';
684 Py_UNICODE *outp;
712 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
715 *outp++ = '\\';
718 *outp++ = 'U';
719 *outp++ = hexdigits[(c>>28)&0xf];
720 *outp++ = hexdigits[(c>>24)&0xf];
721 *outp++ = hexdigits[(c>>20)&0xf];
722 *outp++ = hexdigits[(c>>16)&0xf];
723 *outp++ = hexdigits[(c>>12)&0xf];
724 *outp++ = hexdigits[(c>>8)&0xf];
729 *outp++ = 'u';
730 *outp++ = hexdigits[(c>>12)&0xf];
731 *outp++ = hexdigits[(c>>8)&0xf];
734 *outp++ = 'x';
735 *outp++ = hexdigits[(c>>4)&0xf];
736 *outp++ = hexdigits[c&0xf];