Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/cjkcodecs/
Dmultibytecodec.c475 Py_ssize_t finalsize, r = 0; in multibytecodec_encode() local
527 finalsize = (Py_ssize_t)((char *)buf.outbuf - in multibytecodec_encode()
530 if (finalsize != PyString_GET_SIZE(buf.outobj)) in multibytecodec_encode()
531 if (_PyString_Resize(&buf.outobj, finalsize) == -1) in multibytecodec_encode()
609 Py_ssize_t datalen, finalsize; in MultibyteCodec_Decode() local
657 finalsize = (Py_ssize_t)(buf.outbuf - in MultibyteCodec_Decode()
660 if (finalsize != PyUnicode_GET_SIZE(buf.outobj)) in MultibyteCodec_Decode()
661 if (PyUnicode_Resize(&buf.outobj, finalsize) == -1) in MultibyteCodec_Decode()
1034 Py_ssize_t wsize, finalsize = 0, size, origpending; in mbidecoder_decode() local
1085 finalsize = (Py_ssize_t)(buf.outbuf - PyUnicode_AS_UNICODE(buf.outobj)); in mbidecoder_decode()
[all …]