Searched defs:func_args (Results 1 - 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/contrib/data/kernels/
H A Dprefetching_kernels.cc41 const std::vector<Tensor>& func_args,
48 func_args_(func_args),
255 std::vector<Tensor> func_args; variable
256 func_args.push_back(*string_arg);
277 [lib, &source_device, &target_device, func_args,
281 func_args, thread_pool_size_);
37 FunctionBufferingResource(FunctionLibraryRuntime* lib, const NameAttrList& func, int64 buffer_size, const string& source_device, const string& target_device, const std::vector<Tensor>& func_args, int64 thread_pool_size) argument
/external/python/cpython2/Modules/_sqlite/
H A Dcursor.c448 PyObject* func_args; local
548 func_args = PyTuple_New(1);
549 if (!func_args) {
553 if (PyTuple_SetItem(func_args, 0, operation) != 0) {
562 (pysqlite_Statement *)pysqlite_cache_get(self->connection->statement_cache, func_args));
563 Py_DECREF(func_args);
/external/python/cpython3/Modules/_sqlite/
H A Dcursor.c389 PyObject* func_args; local
477 func_args = PyTuple_New(1);
478 if (!func_args) {
482 if (PyTuple_SetItem(func_args, 0, operation) != 0) {
491 (pysqlite_Statement *)pysqlite_cache_get(self->connection->statement_cache, func_args));
492 Py_DECREF(func_args);

Completed in 143 milliseconds