/civetweb-2.7.6/src/third_party/lua-5.3.5/src/ |
D | lundump.c | 39 static l_noret error(LoadState *S, const char *why) { in error() 49 #define LoadVector(S,b,n) LoadBlock(S,b,(n)*sizeof((b)[0])) argument 51 static void LoadBlock (LoadState *S, void *b, size_t size) { in LoadBlock() 57 #define LoadVar(S,x) LoadVector(S,&x,1) argument 60 static lu_byte LoadByte (LoadState *S) { in LoadByte() 67 static int LoadInt (LoadState *S) { in LoadInt() 74 static lua_Number LoadNumber (LoadState *S) { in LoadNumber() 81 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger() 88 static TString *LoadString (LoadState *S) { in LoadString() 107 static void LoadCode (LoadState *S, Proto *f) { in LoadCode() [all …]
|
D | luac.c | 394 #define S(x) (int)(x),SS(x) macro
|
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/ |
D | lundump.c | 32 #define error(S,s) argument 36 static void error(LoadState* S, const char* why) in error() 43 #define LoadMem(S,b,n,size) LoadBlock(S,b,(n)*(size)) argument 44 #define LoadByte(S) (lu_byte)LoadChar(S) argument 45 #define LoadVar(S,x) LoadMem(S,&x,1,sizeof(x)) argument 46 #define LoadVector(S,b,n,size) LoadMem(S,b,n,size) argument 48 static void LoadBlock(LoadState* S, void* b, size_t size) in LoadBlock() 54 static int LoadChar(LoadState* S) in LoadChar() 61 static int LoadInt(LoadState* S) in LoadInt() 69 static lua_Number LoadNumber(LoadState* S) in LoadNumber() [all …]
|
D | print.c | 159 #define S(x) x,SS(x) macro
|
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/ |
D | lundump.c | 30 static l_noret error(LoadState* S, const char* why) in error() 36 #define LoadMem(S,b,n,size) LoadBlock(S,b,(n)*(size)) argument 37 #define LoadByte(S) (lu_byte)LoadChar(S) argument 38 #define LoadVar(S,x) LoadMem(S,&x,1,sizeof(x)) argument 39 #define LoadVector(S,b,n,size) LoadMem(S,b,n,size) argument 45 static void LoadBlock(LoadState* S, void* b, size_t size) in LoadBlock() 50 static int LoadChar(LoadState* S) in LoadChar() 57 static int LoadInt(LoadState* S) in LoadInt() 65 static lua_Number LoadNumber(LoadState* S) in LoadNumber() 72 static TString* LoadString(LoadState* S) in LoadString() [all …]
|
D | luac.c | 376 #define S(x) (int)(x),SS(x) macro
|
/civetweb-2.7.6/src/third_party/ |
D | sqlite3.c | 12579 # define memcpy(D,S,N) {char*xxd=(char*)(D);const char*xxs=(const char*)(S);\ argument 12837 #define SQLITE_WITHIN(P,S,E) (((uptr)(P)>=(uptr)(S))&&((uptr)(P)<(uptr)(E))) argument
|