Searched refs:dec_buffer (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Modules/_io/ |
D | textio.c | 1673 PyObject *dec_buffer = NULL; in textiowrapper_read_chunk() local 1711 "OO;illegal decoder state", &dec_buffer, &dec_flags)) in textiowrapper_read_chunk() 1717 if (!PyBytes_Check(dec_buffer)) { in textiowrapper_read_chunk() 1721 Py_TYPE(dec_buffer)->tp_name); in textiowrapper_read_chunk() 1725 Py_INCREF(dec_buffer); in textiowrapper_read_chunk() 1774 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk() 1776 dec_buffer = NULL; /* Reference lost to PyBytes_Concat */ in textiowrapper_read_chunk() 1792 Py_XDECREF(dec_buffer); in textiowrapper_read_chunk() 2590 PyObject *dec_buffer; \ in _io_TextIOWrapper_tell_impl() 2602 &dec_buffer, &dec_flags)) \ in _io_TextIOWrapper_tell_impl() [all …]
|
/external/python/cpython2/Modules/_io/ |
D | textio.c | 1394 PyObject *dec_buffer = NULL; in textiowrapper_read_chunk() local 1423 if (!PyArg_Parse(state, "(OO)", &dec_buffer, &dec_flags)) { in textiowrapper_read_chunk() 1427 Py_INCREF(dec_buffer); in textiowrapper_read_chunk() 1469 PyObject *next_input = PyNumber_Add(dec_buffer, input_chunk); in textiowrapper_read_chunk() 1480 Py_DECREF(dec_buffer); in textiowrapper_read_chunk() 1488 Py_XDECREF(dec_buffer); in textiowrapper_read_chunk() 2279 char *dec_buffer; in textiowrapper_tell() local 2296 if (!PyArg_Parse(state, "(s#i)", &dec_buffer, &dec_buffer_len, &dec_flags)) { in textiowrapper_tell()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | intialize.c | 156 State->dec_buffer[k] = 0.0; in WebRtcIsac_InitPitchAnalysis()
|
D | structs.h | 131 double dec_buffer[PITCH_CORR_LEN2 + PITCH_CORR_STEP2 + member
|
D | pitch_estimator.c | 166 …memcpy(buf_dec, State->dec_buffer, sizeof(double) * (PITCH_CORR_LEN2+PITCH_CORR_STEP2+PITCH_MAX_LA… in WebRtcIsac_InitializePitch() 177 …memcpy(State->dec_buffer, buf_dec+PITCH_FRAME_LEN/2, sizeof(double) * (PITCH_CORR_LEN2+PITCH_CORR_… in WebRtcIsac_InitializePitch()
|
/external/python/cpython2/Lib/ |
D | _pyio.py | 1683 dec_buffer, dec_flags = self._decoder.getstate() 1695 self._snapshot = (dec_flags, dec_buffer + input_chunk) 1757 dec_buffer, dec_flags = decoder.getstate() 1758 if not dec_buffer and chars_decoded <= chars_to_skip:
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 2213 dec_buffer, dec_flags = self._decoder.getstate() 2233 self._snapshot = (dec_flags, dec_buffer + input_chunk) 2332 dec_buffer, dec_flags = decoder.getstate() 2333 if not dec_buffer and chars_decoded <= chars_to_skip:
|