Home
last modified time | relevance | path

Searched refs:inbuf_top (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
284 start = (Py_ssize_t)(buf->inbuf - buf->inbuf_top); in multibytecodec_encerror()
290 buf->inbuf_top, 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()
348 buf->inbuf = buf->inbuf_top + newpos; in multibytecodec_encerror()
404 start = (Py_ssize_t)(buf->inbuf - buf->inbuf_top); in multibytecodec_decerror()
410 (const char *)buf->inbuf_top, in multibytecodec_decerror()
[all …]