/external/AFLplusplus/src/ |
D | afl-fuzz-python.c | 120 py_value = PyObject_CallObject(py->py_functions[PY_FUNC_FUZZ], py_args); in fuzz_py() 174 py_value = PyObject_CallObject( in custom_describe_py() 339 PyObject_CallObject(py_mutator->py_functions[PY_FUNC_INIT], py_args); in init_py() 358 py_value = PyObject_CallObject( in deinit_py() 535 py_value = PyObject_CallObject( in post_process_py() 591 py_value = PyObject_CallObject( in init_trim_py() 629 py_value = PyObject_CallObject( in fuzz_count_py() 668 py_value = PyObject_CallObject( in post_trim_py() 697 py_value = PyObject_CallObject( in trim_py() 764 py_value = PyObject_CallObject( in havoc_mutation_py() [all …]
|
/external/python/cpython3/Doc/includes/ |
D | run-func.c | 40 pValue = PyObject_CallObject(pFunc, pArgs); in main()
|
/external/pytorch/torch/csrc/utils/ |
D | tensor_apply.cpp | 48 auto ret = THPObjectPtr(PyObject_CallObject(fn, args.get())); in recursive_apply()
|
/external/libchrome/third_party/markupsafe/ |
D | _speedups.c | 134 rv = PyObject_CallObject(html, NULL); in escape()
|
/external/libxml2/python/ |
D | libxml.c | 1510 result = PyObject_CallObject(libxml_xmlPythonErrorFuncHandler, list); in libxml_xmlErrorFuncHandler() 1602 result = PyObject_CallObject(pyCtxt->f, list); in libxml_xmlParserCtxtErrorHandler() 1738 result = PyObject_CallObject(pyCtxt->error, list); in libxml_xmlValidCtxtGenericErrorFuncHandler() 1761 result = PyObject_CallObject(pyCtxt->warn, list); in libxml_xmlValidCtxtGenericWarningFuncHandler() 1892 result = PyObject_CallObject(pyCtxt->f, list); in libxml_xmlTextReaderErrorCallback() 2084 result = PyObject_CallObject(current_function, list); in libxml_xmlXPathFuncCallback() 2908 result = PyObject_CallObject(pyCtxt->error, list); in libxml_xmlRelaxNGValidityGenericErrorFuncHandler() 2931 result = PyObject_CallObject(pyCtxt->warn, list); in libxml_xmlRelaxNGValidityGenericWarningFuncHandler() 3060 result = PyObject_CallObject(pyCtxt->error, list); in libxml_xmlSchemaValidityGenericErrorFuncHandler() 3083 result = PyObject_CallObject(pyCtxt->warn, list); in libxml_xmlSchemaValidityGenericWarningFuncHandler()
|
/external/pytorch/torch/csrc/autograd/ |
D | python_function.cpp | 150 THPObjectPtr r(PyObject_CallObject(apply_fn, pyInputs.get())); in apply() 669 THPObjectPtr r(PyObject_CallObject(apply_jvp_fn, pyInputs.get())); in _wrap_outputs() 708 THPObjectPtr result(PyObject_CallObject(py_view_as_method, args)); in _wrap_outputs() 1351 output = PyObject_CallObject(forward_fn, unpacked_input.input_tuple); in THPFunction_apply() 1364 PyObject_CallObject(setup_context_fn, ctx_input_output_tuple); in THPFunction_apply() 1375 output = PyObject_CallObject(forward_fn, ctx_input_tuple); in THPFunction_apply()
|
D | python_hook.cpp | 71 THPObjectPtr res(PyObject_CallObject(hook, args)); in _call_hooks()
|
/external/python/markupsafe/src/markupsafe/ |
D | _speedups.c | 208 s = PyObject_CallObject(html, NULL); in escape()
|
/external/cronet/tot/third_party/protobuf/python/google/protobuf/pyext/ |
D | message_factory.cc | 178 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message_factory.cc | 178 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
|
/external/cronet/stable/third_party/protobuf/python/google/protobuf/pyext/ |
D | message_factory.cc | 178 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
|
/external/tensorflow/tensorflow/python/util/ |
D | fast_module_type.cc | 163 auto result = PyObject_CallObject(func, arglist); in CallFunc()
|
/external/libnl/python/netlink/ |
D | capi.i | 626 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_msg_handler() 662 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_err_handler()
|
/external/python/cpython3/Doc/extending/ |
D | extending.rst | 550 .. index:: single: PyObject_CallObject (C function) 553 :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to 569 result = PyObject_CallObject(my_callback, arglist); 572 :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return 573 value of the Python function. :c:func:`PyObject_CallObject` is 576 :c:func:`Py_DECREF`\ -ed immediately after the :c:func:`PyObject_CallObject` 579 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand 587 If the C code that called :c:func:`PyObject_CallObject` is called from Python, it 599 have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases 610 result = PyObject_CallObject(my_callback, arglist);
|
D | embedding.rst | 216 pValue = PyObject_CallObject(pFunc, pArgs);
|
/external/python/cpython3/Include/ |
D | abstract.h | 212 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable,
|
/external/tensorflow/tensorflow/python/framework/ |
D | op_def_util.cc | 177 result.reset(PyObject_CallObject(tensor_proto, nullptr)); in operator ()()
|
/external/python/cpython3/Modules/_xxtestfuzz/ |
D | fuzzer.c | 483 PyObject *xmlparser_instance = PyObject_CallObject(xmlparser_type, NULL); in fuzz_elementtree_parsewhole()
|
/external/python/cpython3/Modules/_sqlite/ |
D | connection.c | 931 py_retval = PyObject_CallObject(ctx->callable, args); in func_callback() 982 function_result = PyObject_CallObject(stepmethod, args); in step_callback() 1217 PyObject *res = PyObject_CallObject(method, args); in inverse_callback()
|
/external/python/cpython3/Doc/c-api/ |
D | call.rst | 195 | :c:func:`PyObject_CallObject` | ``PyObject *`` | tuple/``NULL`` | --- | 254 .. c:function:: PyObject* PyObject_CallObject(PyObject *callable, PyObject *args)
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tfe_src.cc | 2538 PyObject_CallObject(forward_gradient_function, callback_args.get())); 2555 tensorflow::Safe_PyObjectPtr py_result(PyObject_CallObject( 2639 return PyObject_CallObject(backward_function, out_grads); 2693 return PyObject_CallObject(backward_function, out_grads); 2744 return PyObject_CallObject(backward_function, out_grads); 3346 PyObject_CallObject(gradient_function, callback_args.get())); 3630 PyObject_CallObject(callback_fn, callback_args.get());
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 1367 self->traps = PyObject_CallObject((PyObject *)state->PyDecSignalDict_Type, NULL); in context_new() 1373 self->flags = PyObject_CallObject((PyObject *)state->PyDecSignalDict_Type, NULL); in context_new() 1539 context = PyObject_CallObject((PyObject *)state->PyDecContext_Type, NULL); in ieee_context() 1562 copy = PyObject_CallObject((PyObject *)state->PyDecContext_Type, NULL); in context_copy() 6032 PyObject_CallObject((PyObject *)state->PyDecContext_Type, NULL)); in _decimal_exec() 6048 PyObject_CallObject((PyObject *)state->PyDecContext_Type, NULL)); in _decimal_exec() 6055 PyObject_CallObject((PyObject *)state->PyDecContext_Type, NULL)); in _decimal_exec()
|
/external/pytorch/functorch/csrc/dim/ |
D | minpybind.h | 298 return object::checked_steal(PyObject_CallObject(ptr(), args.ptr())); in call_object()
|
/external/python/cpython3/Doc/faq/ |
D | extending.rst | 135 Note that since :c:func:`PyObject_CallObject` *always* wants a tuple for the
|
/external/python/cpython3/Objects/ |
D | call.c | 460 PyObject_CallObject(PyObject *callable, PyObject *args) in PyObject_CallObject() function
|