Searched refs:dec_buffer (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Modules/_io/ |
D | textio.c | 1390 PyObject *dec_buffer = NULL; in textiowrapper_read_chunk() local 1419 if (PyArg_Parse(state, "(OO)", &dec_buffer, &dec_flags) < 0) { in textiowrapper_read_chunk() 1423 Py_INCREF(dec_buffer); in textiowrapper_read_chunk() 1465 PyObject *next_input = PyNumber_Add(dec_buffer, input_chunk); in textiowrapper_read_chunk() 1476 Py_DECREF(dec_buffer); in textiowrapper_read_chunk() 1484 Py_XDECREF(dec_buffer); in textiowrapper_read_chunk() 2274 char *dec_buffer; in textiowrapper_tell() local 2291 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 | 1682 dec_buffer, dec_flags = self._decoder.getstate() 1694 self._snapshot = (dec_flags, dec_buffer + input_chunk) 1756 dec_buffer, dec_flags = decoder.getstate() 1757 if not dec_buffer and chars_decoded <= chars_to_skip:
|