Lines Matching defs:D
36 #define dumpVector(D,v,n) dumpBlock(D,v,(n)*sizeof((v)[0])) argument
38 #define dumpLiteral(D, s) dumpBlock(D,s,sizeof(s) - sizeof(char)) argument
41 static void dumpBlock (DumpState *D, const void *b, size_t size) { in dumpBlock()
50 #define dumpVar(D,x) dumpVector(D,&x,1) argument
53 static void dumpByte (DumpState *D, int y) { in dumpByte()
65 static void dumpSize (DumpState *D, size_t x) { in dumpSize()
77 static void dumpInt (DumpState *D, int x) { in dumpInt()
82 static void dumpNumber (DumpState *D, lua_Number x) { in dumpNumber()
87 static void dumpInteger (DumpState *D, lua_Integer x) { in dumpInteger()
92 static void dumpString (DumpState *D, const TString *s) { in dumpString()
104 static void dumpCode (DumpState *D, const Proto *f) { in dumpCode()
112 static void dumpConstants (DumpState *D, const Proto *f) { in dumpConstants()
138 static void dumpProtos (DumpState *D, const Proto *f) { in dumpProtos()
147 static void dumpUpvalues (DumpState *D, const Proto *f) { in dumpUpvalues()
158 static void dumpDebug (DumpState *D, const Proto *f) { in dumpDebug()
183 static void dumpFunction (DumpState *D, const Proto *f, TString *psource) { in dumpFunction()
201 static void dumpHeader (DumpState *D) { in dumpHeader()
219 DumpState D; in luaU_dump() local