Home
last modified time | relevance | path

Searched refs:ofunc (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_diff.c257 ctf_funcinfo_t ifunc, ofunc; in ctf_diff_fptr() local
263 if (ctf_func_info_by_id(ofp, oid, &ofunc) == CTF_ERR) in ctf_diff_fptr()
266 if (ifunc.ctc_argc != ofunc.ctc_argc) in ctf_diff_fptr()
269 if (ifunc.ctc_flags != ofunc.ctc_flags) in ctf_diff_fptr()
272 ret = ctf_diff_type(cds, ifp, ifunc.ctc_return, ofp, ofunc.ctc_return); in ctf_diff_fptr()
291 if (ctf_func_args_by_id(ofp, oid, ofunc.ctc_argc, oids) == CTF_ERR) { in ctf_diff_fptr()
306 ctf_free(oids, sizeof (ctf_id_t) * ofunc.ctc_argc); in ctf_diff_fptr()
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlvm.c797 StkId ofunc = oci->func; /* caller function */ in luaV_execute()
805 setobjs2s(L, ofunc + aux, nfunc + aux); in luaV_execute()
806 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */ in luaV_execute()
807 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ in luaV_execute()
811 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize); in luaV_execute()