Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavdevice/
Dalldevices.c71 static void *next_input(const AVInputFormat *prev, AVClassCategory c2) in next_input() function
125 return next_input(d, AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT); in av_input_audio_device_next()
130 return next_input(d, AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT); in av_input_video_device_next()
/third_party/mindspore/tests/st/data_transfer/
Dtest_tdt_data_transfer.py111 next_input, _ = self.get_next()
112 return self.Op_network(next_input)
/third_party/python/Modules/_io/
Dtextio.c1900 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk() local
1901 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk()
1903 if (next_input == NULL) { in textiowrapper_read_chunk()
1906 PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input); in textiowrapper_read_chunk()
2653 PyObject *next_input; in _io_TextIOWrapper_tell_impl() local
2701 if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input)) in _io_TextIOWrapper_tell_impl()
2704 assert (PyBytes_Check(next_input)); in _io_TextIOWrapper_tell_impl()
2706 cookie.start_pos -= PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl()
2765 assert(skip_back <= PyBytes_GET_SIZE(next_input)); in _io_TextIOWrapper_tell_impl()
2766 input = PyBytes_AS_STRING(next_input); in _io_TextIOWrapper_tell_impl()
[all …]
/third_party/python/Lib/
D_pyio.py2363 dec_flags, next_input = self._snapshot
2364 position -= len(next_input)
2385 assert skip_bytes <= len(next_input)
2389 n = len(decoder.decode(next_input[:skip_bytes]))
2423 for i in range(skip_bytes, len(next_input)):
2425 chars_decoded += len(decoder.decode(next_input[i:i+1]))