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

/external/python/cpython2/Objects/
H A Dunicodeobject.c4030 int mbcssize = 0; local
4037 mbcssize = WideCharToMultiByte(CP_ACP, 0, p, size, NULL, 0, NULL, NULL);
4038 if (mbcssize == 0) {
4046 *repr = PyString_FromStringAndSize(NULL, mbcssize);
4053 if (_PyString_Resize(repr, n + mbcssize) < 0)
4060 if (0 == WideCharToMultiByte(CP_ACP, 0, p, size, s, mbcssize, NULL, NULL)) {

Completed in 150 milliseconds