Lines Matching defs:D
35 #define DumpVector(v,n,D) DumpBlock(v,(n)*sizeof((v)[0]),D) argument
37 #define DumpLiteral(s,D) DumpBlock(s, sizeof(s) - sizeof(char), D) argument
40 static void DumpBlock (const void *b, size_t size, DumpState *D) { in DumpBlock()
49 #define DumpVar(x,D) DumpVector(&x,1,D) argument
52 static void DumpByte (int y, DumpState *D) { in DumpByte()
58 static void DumpInt (int x, DumpState *D) { in DumpInt()
63 static void DumpNumber (lua_Number x, DumpState *D) { in DumpNumber()
68 static void DumpInteger (lua_Integer x, DumpState *D) { in DumpInteger()
73 static void DumpString (const TString *s, DumpState *D) { in DumpString()
90 static void DumpCode (const Proto *f, DumpState *D) { in DumpCode()
98 static void DumpConstants (const Proto *f, DumpState *D) { in DumpConstants()
128 static void DumpProtos (const Proto *f, DumpState *D) { in DumpProtos()
137 static void DumpUpvalues (const Proto *f, DumpState *D) { in DumpUpvalues()
147 static void DumpDebug (const Proto *f, DumpState *D) { in DumpDebug()
166 static void DumpFunction (const Proto *f, TString *psource, DumpState *D) { in DumpFunction()
184 static void DumpHeader (DumpState *D) { in DumpHeader()
204 DumpState D; in luaU_dump() local