Home
last modified time | relevance | path

Searched refs:pfunc (Results 1 – 17 of 17) sorted by relevance

/external/compiler-rt/test/builtins/Unit/
Denable_execute_stack_test.c36 typedef int (*pfunc)(void); typedef
68 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); in main()
74 pfunc f2 = (pfunc)memcpy_f(execution_buffer, func2, 128); in main()
Dclear_cache_test.c29 typedef int (*pfunc)(void); typedef
73 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); in main()
79 pfunc f2 = (pfunc)memcpy_f(execution_buffer, func2, 128); in main()
/external/clang/test/Sema/
Darray-constraint.c30 typedef int (*pfunc)(void); typedef
32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}} in xx()
/external/python/cpython3/Modules/
Dxxlimited.c241 Null_Type_slots[0].pfunc = &PyBaseObject_Type; in xx_modexec()
242 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec()
243 Str_Type_slots[0].pfunc = &PyUnicode_Type; in xx_modexec()
D_testmultiphase.c187 Str_Type_slots[0].pfunc = &PyUnicode_Type; in execfunc()
D_ssl.c5193 sslerror_type_slots[0].pfunc = PyExc_OSError; in PyInit__ssl()
/external/tcpdump/
Dprint-ppp.c419 int (*pfunc)(netdissect_options *, const u_char *, int); in handle_ctrl_proto() local
477 pfunc = print_lcp_config_options; in handle_ctrl_proto()
480 pfunc = print_ipcp_config_options; in handle_ctrl_proto()
483 pfunc = print_ip6cp_config_options; in handle_ctrl_proto()
486 pfunc = print_ccp_config_options; in handle_ctrl_proto()
489 pfunc = print_bacp_config_options; in handle_ctrl_proto()
496 pfunc = NULL; in handle_ctrl_proto()
500 if (pfunc == NULL) /* catch the above null pointer if unknown CP */ in handle_ctrl_proto()
503 if ((j = (*pfunc)(ndo, tptr, len)) == 0) in handle_ctrl_proto()
Dprint-lldp.c1317 const char * (*pfunc)(netdissect_options *, const u_char *); in lldp_network_addr_print() local
1328 pfunc = getname; in lldp_network_addr_print()
1334 pfunc = getname6; in lldp_network_addr_print()
1339 pfunc = etheraddr_string; in lldp_network_addr_print()
1342 pfunc = NULL; in lldp_network_addr_print()
1346 if (!pfunc) { in lldp_network_addr_print()
1351 tok2str(af_values, "Unknown", af), af, (*pfunc)(ndo, tptr+1)); in lldp_network_addr_print()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_remote_master.cc116 ::grpc::Status (MasterServiceStub::*pfunc)(::grpc::ClientContext*, in Call()
121 return FromGrpcStatus((stub_.get()->*pfunc)(ctx, *request, response)); in Call()
/external/clang/test/SemaTemplate/
Dtemp_arg_nontype.cpp159 static int pfunc(float);
162 X0<X1::pfunc> x01; in test_X0_X1()
/external/python/cpython2/Python/
Dceval.c3006 PyObject **pfunc, *func, **sp; in PyEval_EvalFrameEx() local
3012 pfunc = stack_pointer - n - 1; in PyEval_EvalFrameEx()
3013 func = *pfunc; in PyEval_EvalFrameEx()
3021 Py_DECREF(*pfunc); in PyEval_EvalFrameEx()
3022 *pfunc = self; in PyEval_EvalFrameEx()
3033 while (stack_pointer > pfunc) { in PyEval_EvalFrameEx()
4320 PyObject **pfunc = (*pp_stack) - n - 1; in call_function() local
4321 PyObject *func = *pfunc; in call_function()
4365 Py_SETREF(*pfunc, self); in call_function()
4383 while ((*pp_stack) > pfunc) { in call_function()
/external/python/cpython2/Lib/
Dtrace.py285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py549 pfunc = "p_func: %s(" % t.funcname
554 pfunc = "p_func: %s.%s(" % (repr(pself), t.funcname)
562 err += pfunc
/external/python/cpython3/Lib/
Dtrace.py243 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
253 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
/external/python/cpython3/Include/
Dobject.h440 void *pfunc; /* function pointer */ member
/external/python/cpython3/Python/
Dceval.c4782 PyObject **pfunc = (*pp_stack) - oparg - 1; in call_function() local
4783 PyObject *func = *pfunc; in call_function()
4809 Py_SETREF(*pfunc, self); in call_function()
4834 while ((*pp_stack) > pfunc) { in call_function()
/external/python/cpython3/Objects/
Dtypeobject.c2775 base = slot->pfunc; in PyType_FromSpecWithBases()
2777 bases = slot->pfunc; in PyType_FromSpecWithBases()
2825 *(void**)(res_start + slotoffsets[slot->slot]) = slot->pfunc; in PyType_FromSpecWithBases()
2830 const char *old_doc = _PyType_DocWithoutSignature(type->tp_name, slot->pfunc); in PyType_FromSpecWithBases()