Home
last modified time | relevance | path

Searched refs:pfunc (Results 1 – 19 of 19) 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.c240 Null_Type_slots[0].pfunc = &PyBaseObject_Type; in xx_modexec()
241 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec()
242 Str_Type_slots[0].pfunc = &PyUnicode_Type; in xx_modexec()
D_testmultiphase.c189 Str_Type_slots[0].pfunc = &PyUnicode_Type; in execfunc()
D_ssl.c5760 sslerror_type_slots[0].pfunc = PyExc_OSError; in PyInit__ssl()
/external/u-boot/common/
Dbedbug.c80 int (*pfunc) (const char *), unsigned long flags) in disppc()
144 print_source_line (filename, funcname, line_no, pfunc); in disppc()
203 (*pfunc) (ctx.data); in disppc()
215 (*pfunc) (ctx.data); in disppc()
728 int line_no, int (*pfunc) (const char *)) in print_source_line()
734 (*pfunc) (""); /* output a newline */ in print_source_line()
736 (*pfunc) (out_buf); in print_source_line()
/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.cc123 ::grpc::Status (MasterServiceStub::*pfunc)( in CallWithRetry()
149 s = FromGrpcStatus((stub_.get()->*pfunc)(&ctx, *request, response));
/external/clang/test/SemaTemplate/
Dtemp_arg_nontype.cpp159 static int pfunc(float);
162 X0<X1::pfunc> x01; in test_X0_X1()
/external/u-boot/include/bedbug/
Dppc.h375 int (*pfunc)(const char *)));
/external/python/cpython3/Lib/
Dtrace.py226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
/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/cpython2/Python/
Dceval.c3026 PyObject **pfunc, *func, **sp; in PyEval_EvalFrameEx() local
3032 pfunc = stack_pointer - n - 1; in PyEval_EvalFrameEx()
3033 func = *pfunc; in PyEval_EvalFrameEx()
3041 Py_DECREF(*pfunc); in PyEval_EvalFrameEx()
3042 *pfunc = self; in PyEval_EvalFrameEx()
3053 while (stack_pointer > pfunc) { in PyEval_EvalFrameEx()
4340 PyObject **pfunc = (*pp_stack) - n - 1; in call_function() local
4341 PyObject *func = *pfunc; in call_function()
4385 Py_SETREF(*pfunc, self); in call_function()
4403 while ((*pp_stack) > pfunc) { in call_function()
/external/python/cpython3/Include/
Dobject.h440 void *pfunc; /* function pointer */ member
/external/python/cpython3/Python/
Dceval.c4556 PyObject **pfunc = (*pp_stack) - oparg - 1; in Py_LOCAL_INLINE() local
4557 PyObject *func = *pfunc; in Py_LOCAL_INLINE()
4607 Py_SETREF(*pfunc, self); in Py_LOCAL_INLINE()
4627 while ((*pp_stack) > pfunc) { in Py_LOCAL_INLINE()
/external/python/cpython3/Objects/
Dtypeobject.c2882 base = slot->pfunc; in PyType_FromSpecWithBases()
2884 bases = slot->pfunc; in PyType_FromSpecWithBases()
2932 *(void**)(res_start + slotoffsets[slot->slot]) = slot->pfunc; in PyType_FromSpecWithBases()
2937 const char *old_doc = _PyType_DocWithoutSignature(type->tp_name, slot->pfunc); in PyType_FromSpecWithBases()