| /netbsd/src/external/mit/lua/dist/src/ |
| D | lundump.c | 114 static TString *loadStringN (LoadState *S, Proto *p) { in loadStringN() 140 static TString *loadString (LoadState *S, Proto *p) { in loadString() 148 static void loadCode (LoadState *S, Proto *f) { in loadCode() 156 static void loadFunction(LoadState *S, Proto *f, TString *psource); 159 static void loadConstants (LoadState *S, Proto *f) { in loadConstants() 197 static void loadProtos (LoadState *S, Proto *f) { in loadProtos() 200 f->p = luaM_newvectorchecked(S->L, n, Proto *); in loadProtos() 218 static void loadUpvalues (LoadState *S, Proto *f) { in loadUpvalues() 233 static void loadDebug (LoadState *S, Proto *f) { in loadDebug() 264 static void loadFunction (LoadState *S, Proto *f, TString *psource) { in loadFunction()
|
| D | ldump.c | 115 static void dumpCode (DumpState *D, const Proto *f) { in dumpCode() 121 static void dumpFunction(DumpState *D, const Proto *f, TString *psource); 123 static void dumpConstants (DumpState *D, const Proto *f) { in dumpConstants() 151 static void dumpProtos (DumpState *D, const Proto *f) { in dumpProtos() 160 static void dumpUpvalues (DumpState *D, const Proto *f) { in dumpUpvalues() 171 static void dumpDebug (DumpState *D, const Proto *f) { in dumpDebug() 196 static void dumpFunction (DumpState *D, const Proto *f, TString *psource) { in dumpFunction() 230 int luaU_dump(lua_State *L, const Proto *f, lua_Writer w, void *data, in luaU_dump()
|
| D | ldebug.c | 64 static int getbaseline (const Proto *f, int pc, int *basepc) { in getbaseline() 87 int luaG_getfuncline (const Proto *f, int pc) { in luaG_getfuncline() 181 static const char *upvalname (const Proto *p, int uv) { in upvalname() 269 const Proto *p = cl->l.p; in funcinfo() 286 static int nextline (const Proto *p, int currentline, int pc) { in nextline() 302 const Proto *p = f->l.p; in collectvalidlines() 424 static const char *getobjname (const Proto *p, int lastpc, int reg, 431 static void kname (const Proto *p, int c, const char **name) { in kname() 440 static void rname (const Proto *p, int pc, int c, const char **name) { in rname() 450 static void rkname (const Proto *p, int pc, Instruction i, const char **name) { in rkname() [all …]
|
| D | lfunc.h | 52 LUAI_FUNC Proto *luaF_newproto (lua_State *L); 61 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f); 62 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
|
| D | luac.c | 30 static void PrintFunction(const Proto* f, int full); 145 static const Proto* combine(lua_State* L, int n) in combine() 151 Proto* f; in combine() 174 const Proto* f; in pmain() 267 static void PrintType(const Proto* f, int i) in PrintType() 296 static void PrintConstant(const Proto* f, int i) in PrintConstant() 340 static void PrintCode(const Proto* f) in PrintCode() 674 static void PrintHeader(const Proto* f) in PrintHeader() 694 static void PrintDebug(const Proto* f) in PrintDebug() 722 static void PrintFunction(const Proto* f, int full) in PrintFunction()
|
| D | lfunc.c | 244 Proto *luaF_newproto (lua_State *L) { in luaF_newproto() 245 GCObject *o = luaC_newobj(L, LUA_VPROTO, sizeof(Proto)); in luaF_newproto() 246 Proto *f = gco2p(o); in luaF_newproto() 271 void luaF_freeproto (lua_State *L, Proto *f) { in luaF_freeproto() 287 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) { in luaF_getlocalname()
|
| D | lundump.h | 35 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
| D | lobject.h | 564 typedef struct Proto { struct 580 struct Proto **p; /* functions defined inside the function */ argument 587 } Proto; typedef 670 struct Proto *p;
|
| D | lparser.c | 180 Proto *f = fs->f; in registerlocalvar() 357 Proto *f = fs->f; in allocupvalue() 702 static Proto *addprototype (LexState *ls) { in addprototype() 703 Proto *clp; in addprototype() 706 Proto *f = fs->f; /* prototype of current function */ in addprototype() 709 luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions"); in addprototype() 734 Proto *f = fs->f; in open_func() 763 Proto *f = fs->f; in close_func() 773 luaM_shrinkvector(L, f->p, f->sizep, fs->np, Proto *); in close_func() 966 Proto *f = fs->f; in parlist()
|
| D | ldebug.h | 41 LUAI_FUNC int luaG_getfuncline (const Proto *f, int pc);
|
| D | lparser.h | 149 Proto *f; /* current function header */
|
| D | ltm.h | 103 CallInfo *ci, const Proto *p);
|
| D | ldo.c | 378 Proto *p = ci_func(ci)->p; in luaD_hookcall() 397 Proto *p = ci_func(ci)->p; in rethook() 556 Proto *p = clLvalue(s2v(func))->p; in luaD_pretailcall() 603 Proto *p = clLvalue(s2v(func))->p; in luaD_precall()
|
| D | lcode.c | 335 static void savelineinfo (FuncState *fs, Proto *f, int line) { in savelineinfo() 360 Proto *f = fs->f; in removelastlineinfo() 389 Proto *f = fs->f; in luaK_code() 552 Proto *f = fs->f; in addk() 1889 Proto *p = fs->f;
|
| D | lstate.h | 361 struct Proto p;
|
| D | ltm.c | 250 const Proto *p) { in luaT_adjustvarargs()
|
| D | lvm.c | 836 static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, 1976 Proto *p = cl->p->p[GETARG_Bx(i)];
|
| D | lgc.c | 581 static int traverseproto (global_State *g, Proto *f) { in traverseproto()
|
| /netbsd/src/tests/lib/librumphijack/ |
| D | netstat.expout | 2 Proto Recv-Q Send-Q Local Address Foreign Address State 5 Proto Recv-Q Send-Q Local Address Foreign Address (state)
|
| /netbsd/src/external/bsd/ipf/dist/etc/ |
| D | protocols | 38 idpr-cmtp 38 IDPR-CMTP # IDPR Control Message Transport Proto
|
| /netbsd/src/external/bsd/openldap/dist/doc/drafts/ |
| D | draft-ietf-ldapext-locate-xx.txt | 163 _<Service>._<Proto>.<Domain>. 165 where <Service> is "ldap", and <Proto> is "tcp". <Domain> is the
|
| /netbsd/src/etc/ |
| D | protocols | 109 # Transport Proto
|
| /netbsd/src/external/ibm-public/postfix/dist/proto/ |
| D | stop.spell-cc | 1057 Proto
|
| /netbsd/src/external/bsd/file/dist/magic/magdir/ |
| D | sniffer | 248 …FFFFFF 263 (WattStopper Digital Lighting Mngmt/Legrand Nitoo Open Proto
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/objc/ |
| D | ChangeLog | 3908 (objc_finish_message_expr): Allow for messaging of 'Class <Proto>' 3912 'id <Proto>', 'Class <Proto>' and invalid receiver types. 3916 IS_PROTOCOL_QUALIFIED_UNTYPED and allow for 'Class <Proto>' in 3917 addition to 'id <Proto>'.
|