Searched defs:collend (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
H A Dunicodeobject.c3669 const Py_UNICODE *collend = p; local
3671 while ((collend < endp) && ((*collend) >= limit))
3672 ++collend;
3688 raise_encode_exception(&exc, encoding, startp, size, collstart-startp, collend-startp, reason);
3691 while (collstart++ < collend)
3694 p = collend;
3700 for (p = collstart; p < collend;) {
3701 Py_UCS4 ch = _Py_UNICODE_NEXT(p, collend);
3721 if (requiredsize > PY_SSIZE_T_MAX - (endp - collend))
5106 const Py_UNICODE *collend = p+1; local
5248 Py_UNICODE *collend; local
[all...]
/external/python/cpython3/Objects/
H A Dunicodeobject.c576 PyObject *unicode, Py_ssize_t collstart, Py_ssize_t collend)
589 for (i = collstart; i < collend; ++i) {
614 for (i = collstart; i < collend; ++i) {
643 PyObject *unicode, Py_ssize_t collstart, Py_ssize_t collend)
656 for (i = collstart; i < collend; ++i) {
689 for (i = collstart; i < collend; ++i) {
6747 Py_ssize_t collend = collstart + 1; local
6750 while ((collend < size) && (PyUnicode_READ(kind, data, collend) >= limit))
6751 ++collend;
575 backslashreplace(_PyBytesWriter *writer, char *str, PyObject *unicode, Py_ssize_t collstart, Py_ssize_t collend) argument
642 xmlcharrefreplace(_PyBytesWriter *writer, char *str, PyObject *unicode, Py_ssize_t collstart, Py_ssize_t collend) argument
8979 Py_ssize_t collend; local
[all...]

Completed in 95 milliseconds