Home
last modified time | relevance | path

Searched refs:inbuf_end (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/cjkcodecs/
Dmultibytecodec.c13 const Py_UNICODE *inbuf, *inbuf_top, *inbuf_end; member
19 const unsigned char *inbuf, *inbuf_top, *inbuf_end; member
243 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf); in multibytecodec_encerror()
291 buf->inbuf_end - buf->inbuf_top, in multibytecodec_encerror()
340 newpos += (Py_ssize_t)(buf->inbuf_end - buf->inbuf_top); in multibytecodec_encerror()
341 if (newpos < 0 || buf->inbuf_top + newpos > buf->inbuf_end) { in multibytecodec_encerror()
382 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf); in multibytecodec_decerror()
411 (Py_ssize_t)(buf->inbuf_end - buf->inbuf_top), in multibytecodec_decerror()
451 newpos += (Py_ssize_t)(buf->inbuf_end - buf->inbuf_top); in multibytecodec_decerror()
452 if (newpos < 0 || buf->inbuf_top + newpos > buf->inbuf_end) { in multibytecodec_decerror()
[all …]