Home
last modified time | relevance | path

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

/third_party/python/Modules/cjkcodecs/clinic/
Dmultibytecodec.c.h212 PyLongObject *statelong);
218 PyLongObject *statelong; in _multibytecodec_MultibyteIncrementalEncoder_setstate() local
224 statelong = (PyLongObject *)arg; in _multibytecodec_MultibyteIncrementalEncoder_setstate()
225 return_value = _multibytecodec_MultibyteIncrementalEncoder_setstate_impl(self, statelong); in _multibytecodec_MultibyteIncrementalEncoder_setstate()
/third_party/python/Modules/cjkcodecs/
Dmultibytecodec.c966 PyLongObject *statelong) in _multibytecodec_MultibyteIncrementalEncoder_setstate_impl() argument
972 if (_PyLong_AsByteArray(statelong, statebytes, sizeof(statebytes), in _multibytecodec_MultibyteIncrementalEncoder_setstate_impl()
1212 PyObject *statelong; in _multibytecodec_MultibyteIncrementalDecoder_getstate_impl() local
1220 statelong = (PyObject *)_PyLong_FromByteArray(self->state.c, in _multibytecodec_MultibyteIncrementalDecoder_getstate_impl()
1224 if (statelong == NULL) { in _multibytecodec_MultibyteIncrementalDecoder_getstate_impl()
1229 return Py_BuildValue("NN", buffer, statelong); in _multibytecodec_MultibyteIncrementalDecoder_getstate_impl()
1244 PyLongObject *statelong; in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl() local
1250 &buffer, &PyLong_Type, &statelong)) in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl()
1255 if (_PyLong_AsByteArray(statelong, statebytes, sizeof(statebytes), in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl()