Home
last modified time | relevance | path

Searched refs:c_func (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/clang/test/CXX/class/class.friend/
Dp1-ambiguous.cpp13 int c_func(foo *a);
19 friend int c_func(foo *a);
26 int c_func(foo *a) { in c_func() function
35 c_func(this); in caller()
/external/clang/test/CXX/class/class.friend/
Dp1-ambiguous.cpp13 int c_func(foo *a);
19 friend int c_func(foo *a);
26 int c_func(foo *a) { in c_func() function
35 c_func(this); in caller()
/external/usrsctp/usrsctplib/netinet/
Dsctp_callout.c125 c->c_func = ftn; in sctp_os_timer_start()
157 void (*c_func)(void *); in sctp_handle_tick() local
168 c_func = c->c_func; in sctp_handle_tick()
172 c_func(c_arg); in sctp_handle_tick()
Dsctp_callout.h82 void (*c_func)(void *); /* function to call */ member
/external/tensorflow/tensorflow/python/framework/
Dfunction.py452 c_func = c_api.TF_GraphToFunction_wrapper(
464 self._c_func = c_api_util.ScopedTFFunction(c_func)
1125 c_func = c_api.TF_FunctionImportFunctionDef(serialized)
1126 result._c_func = c_api_util.ScopedTFFunction(c_func)
1342 def function_def_from_tf_function(c_func): argument
1345 c_api.TF_FunctionToFunctionDef(c_func, buf)
/external/ppp/pppd/
Dmain.c1284 void (*c_func) __P((void *)); /* routine */ member
1308 newp->c_func = func;
1344 if (freep->c_func == func && freep->c_arg == arg) {
1371 (*p->c_func)(p->c_arg); in calltimeout()
/external/python/cffi/cffi/
Dbackend_ctypes.py1104 c_func = getattr(self.cdll, name)
1105 funcobj = BType._from_ctypes(c_func)
/external/python/cpython3/Lib/test/
Dtest_decimal.py5529 c_func = getattr(C, attr)
5533 c_sig = inspect.signature(c_func)
5612 c_func = getattr(c_type, attr)
5615 c_sig = inspect.signature(c_func)
5644 raise TestFailed("invalid signature for %s: %s %s" % (c_func, args, kwds))