Searched refs:next_input (Results 1 – 8 of 8) sorted by relevance
/external/oss-fuzz/projects/mpg123/ |
D | decode_fuzzer.cc | 47 auto next_input = provider.ConsumeBytes<unsigned char>(next_size); in LLVMFuzzerTestOneInput() local 48 decode_ret = mpg123_decode(handle, next_input.data(), next_input.size(), in LLVMFuzzerTestOneInput()
|
/external/python/cpython2/Modules/_io/ |
D | textio.c | 1469 PyObject *next_input = PyNumber_Add(dec_buffer, input_chunk); in textiowrapper_read_chunk() local 1470 if (next_input == NULL) in textiowrapper_read_chunk() 1472 if (!PyBytes_Check(next_input)) { in textiowrapper_read_chunk() 1476 Py_TYPE(next_input)->tp_name); in textiowrapper_read_chunk() 1477 Py_DECREF(next_input); in textiowrapper_read_chunk() 1481 Py_XSETREF(self->snapshot, Py_BuildValue("NN", dec_flags, next_input)); in textiowrapper_read_chunk() 2197 PyObject *next_input; in textiowrapper_tell() local 2241 if (!PyArg_Parse(self->snapshot, "(iO)", &cookie.dec_flags, &next_input)) in textiowrapper_tell() 2244 assert (PyBytes_Check(next_input)); in textiowrapper_tell() 2246 cookie.start_pos -= PyBytes_GET_SIZE(next_input); in textiowrapper_tell() [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | rnn.py | 1121 (elements_finished, next_input, 1124 flat_input = nest.flatten(next_input) 1207 (next_finished, next_input, next_state, emit_output, 1212 nest.assert_same_structure(current_input, next_input) 1242 return (next_time, elements_finished, next_input, emit_ta, next_state, 1249 time, elements_finished, next_input, emit_ta, state, loop_state
|
/external/tensorflow/tensorflow/cc/ops/ |
D | while_loop.cc | 75 NodeBuilder::NodeOut next_input(NextIterationName(scope, loop_var_idx), in CreateMerge() local 78 std::vector<NodeBuilder::NodeOut> input_list({enter_input, next_input}); in CreateMerge()
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 1848 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk() local 1849 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk() 1851 if (next_input == NULL) { in textiowrapper_read_chunk() 1854 PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input); in textiowrapper_read_chunk() 2600 PyObject *next_input; in _io_TextIOWrapper_tell_impl() local 2648 if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input)) in _io_TextIOWrapper_tell_impl() 2651 assert (PyBytes_Check(next_input)); in _io_TextIOWrapper_tell_impl() 2653 cookie.start_pos -= PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl() 2712 assert(skip_back <= PyBytes_GET_SIZE(next_input)); in _io_TextIOWrapper_tell_impl() 2713 input = PyBytes_AS_STRING(next_input); in _io_TextIOWrapper_tell_impl() [all …]
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 2329 dec_flags, next_input = self._snapshot 2330 position -= len(next_input) 2351 assert skip_bytes <= len(next_input) 2355 n = len(decoder.decode(next_input[:skip_bytes])) 2389 for i in range(skip_bytes, len(next_input)): 2391 chars_decoded += len(decoder.decode(next_input[i:i+1]))
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | rnn_cell_test.py | 2083 next_input = control_flow_ops.cond( 2087 return (elements_finished, next_input, next_state, emit_output, None) 2194 next_input = control_flow_ops.cond( 2198 return (elements_finished, next_input, next_state, emit_output, 2237 next_input = control_flow_ops.cond( 2241 return (elements_finished, next_input, next_state, emit_output, 2280 next_input = control_flow_ops.cond( 2284 return (elements_finished, next_input, next_state, emit_output, None) 2346 next_input = control_flow_ops.cond( 2350 return (elements_finished, next_input, next_state, emit_output, None)
|
/external/python/cpython2/Lib/ |
D | _pyio.py | 1731 dec_flags, next_input = self._snapshot 1732 position -= len(next_input) 1754 for next_byte in next_input:
|