Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 103) sorted by relevance

12345

/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dlstrlib.c45 const char *s = luaL_checklstring(L, 1, &l); in str_sub() local
60 const char *s = luaL_checklstring(L, 1, &l); in str_reverse() local
72 const char *s = luaL_checklstring(L, 1, &l); in str_lower() local
85 const char *s = luaL_checklstring(L, 1, &l); in str_upper() local
96 const char *s = luaL_checklstring(L, 1, &l); in str_rep() local
108 const char *s = luaL_checklstring(L, 1, &l); in str_byte() local
281 static const char *matchbalance (MatchState *ms, const char *s, in matchbalance()
301 static const char *max_expand (MatchState *ms, const char *s, in max_expand()
316 static const char *min_expand (MatchState *ms, const char *s, in min_expand()
329 static const char *start_capture (MatchState *ms, const char *s, in start_capture()
[all …]
Dlstring.h16 #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) argument
20 #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s))) argument
21 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ argument
24 #define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT) argument
Dlundump.c31 #define IF(c,s) argument
32 #define error(S,s) argument
34 #define IF(c,s) if (c) error(S,s) argument
84 char* s=luaZ_openspace(S->L,S->b,size); in LoadString() local
186 char s[LUAC_HEADERSIZE]; in LoadHeader() local
Dluac.c68 #define IS(s) (strcmp(argv[i],s)==0) argument
160 struct Smain* s = (struct Smain*)lua_touserdata(L, 1); in pmain() local
189 struct Smain s; in main() local
Dlauxlib.c159 const char *s = lua_tolstring(L, narg, len); in luaL_checklstring() local
340 LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const char *p, in luaL_gsub()
436 LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { in luaL_addlstring()
442 LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { in luaL_addstring()
457 const char *s = lua_tolstring(L, -1, &vl); in luaL_addvalue() local
594 const char *s; member
Dlobject.c90 int luaO_str2d (const char *s, lua_Number *result) { in luaO_str2d()
121 const char *s = va_arg(argp, char *); in luaO_pushvfstring() local
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlstrlib.c55 const char *s = luaL_checklstring(L, 1, &l); in str_sub() local
70 const char *s = luaL_checklstring(L, 1, &l); in str_reverse() local
83 const char *s = luaL_checklstring(L, 1, &l); in str_lower() local
96 const char *s = luaL_checklstring(L, 1, &l); in str_upper() local
110 const char *s = luaL_checklstring(L, 1, &l); in str_rep() local
135 const char *s = luaL_checklstring(L, 1, &l); in str_byte() local
309 static int singlematch (MatchState *ms, const char *s, const char *p, in singlematch()
325 static const char *matchbalance (MatchState *ms, const char *s, in matchbalance()
346 static const char *max_expand (MatchState *ms, const char *s, in max_expand()
361 static const char *min_expand (MatchState *ms, const char *s, in min_expand()
[all …]
Dlstring.h15 #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) argument
19 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ argument
22 #define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT) argument
28 #define isreserved(s) ((s)->tsv.tt == LUA_TSHRSTR && (s)->tsv.extra > 0) argument
Dlobject.c98 static int isneg (const char **s) { in isneg()
105 static lua_Number readhexa (const char **s, lua_Number r, int *count) { in readhexa()
118 static lua_Number lua_strx2number (const char *s, char **endptr) { in lua_strx2number()
158 int luaO_str2d (const char *s, size_t len, lua_Number *result) { in luaO_str2d()
188 const char *s = va_arg(argp, char *); in luaO_pushvfstring() local
Dlmem.h29 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) argument
33 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) argument
38 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) argument
Dluaconf.h214 #define luai_writestring(s,l) fwrite((s), sizeof(char), (l), stdout) argument
222 #define luai_writestringerror(s,p) \ argument
404 #define lua_number2str(s,n) sprintf((s), LUA_NUMBER_FMT, (n)) argument
422 #define lua_str2number(s,p) strtod((s), (p)) argument
425 #define lua_strx2number(s,p) strtod((s), (p)) argument
Dlauxlib.c358 const char *s = lua_tolstring(L, narg, len); in luaL_checklstring() local
459 LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { in luaL_addlstring()
466 LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { in luaL_addstring()
488 const char *s = lua_tolstring(L, -1, &l); in luaL_addvalue() local
667 const char *s; member
691 LUALIB_API int luaL_loadstring (lua_State *L, const char *s) { in luaL_loadstring()
902 LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const char *p, in luaL_gsub()
Dluac.c67 #define IS(s) (strcmp(argv[i],s)==0) argument
225 const char* s=getstr(ts); in PrintString() local
380 const char* s=f->source ? getstr(f->source) : "=?"; in PrintHeader() local
Dlundump.c80 char* s=luaZ_openspace(S->L,S->b,size); in LoadString() local
193 lu_byte s[LUAC_HEADERSIZE]; in LoadHeader() local
235 #define MYINT(s) (s[0]-'0') argument
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlstrlib.c72 const char *s = luaL_checklstring(L, 1, &l); in str_sub() local
87 const char *s = luaL_checklstring(L, 1, &l); in str_reverse() local
100 const char *s = luaL_checklstring(L, 1, &l); in str_lower() local
113 const char *s = luaL_checklstring(L, 1, &l); in str_upper() local
124 const char *s = luaL_checklstring(L, 1, &l); in str_rep() local
150 const char *s = luaL_checklstring(L, 1, &l); in str_byte() local
325 static int singlematch (MatchState *ms, const char *s, const char *p, in singlematch()
341 static const char *matchbalance (MatchState *ms, const char *s, in matchbalance()
361 static const char *max_expand (MatchState *ms, const char *s, in max_expand()
376 static const char *min_expand (MatchState *ms, const char *s, in min_expand()
[all …]
Dlutf8lib.c42 const unsigned char *s = (const unsigned char *)o; in utf8_decode() local
74 const char *s = luaL_checklstring(L, 1, &len); in utflen() local
102 const char *s = luaL_checklstring(L, 1, &len); in codepoint() local
162 const char *s = luaL_checklstring(L, 1, &len); in byteoffset() local
203 const char *s = luaL_checklstring(L, 1, &len); in iter_aux() local
Dlobject.c169 static int isneg (const char **s) { in isneg()
193 static lua_Number lua_strx2number (const char *s, char **endptr) { in lua_strx2number()
251 static const char *l_str2dloc (const char *s, lua_Number *result, int mode) { in l_str2dloc()
274 static const char *l_str2d (const char *s, lua_Number *result) { in l_str2d()
299 static const char *l_str2int (const char *s, lua_Integer *result) { in l_str2int()
331 size_t luaO_str2num (const char *s, TValue *o) { in luaO_str2num()
408 const char *s = va_arg(argp, char *); in luaO_pushvfstring() local
Dluaconf.h436 #define lua_number2str(s,sz,n) \ argument
468 #define lua_str2number(s,p) strtof((s), (p)) argument
484 #define lua_str2number(s,p) strtold((s), (p)) argument
499 #define lua_str2number(s,p) strtod((s), (p)) argument
530 #define lua_integer2str(s,sz,n) \ argument
606 #define l_sprintf(s,sz,f,i) snprintf(s,sz,f,i) argument
608 #define l_sprintf(s,sz,f,i) ((void)(sz), sprintf(s,f,i)) argument
619 #define lua_strx2number(s,p) lua_str2number(s,p) argument
652 #define lua_str2number(s,p) ((lua_Number)strtod((s), (p))) argument
Dlbaselib.c29 const char *s; in luaB_print() local
48 static const char *b_str2int (const char *s, int base, lua_Integer *pn) { in b_str2int()
78 const char *s = lua_tolstring(L, 1, &l); in luaB_tonumber() local
86 const char *s; in luaB_tonumber() local
337 const char *s = lua_tolstring(L, 1, &l); in luaB_load() local
Dlmem.h41 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) argument
45 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) argument
50 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) argument
Dlstring.h20 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ argument
27 #define isreserved(s) ((s)->tt == LUA_TSHRSTR && (s)->extra > 0) argument
Dlauxlib.h132 #define luaL_dostring(L, s) \ argument
139 #define luaL_loadbuffer(L,s,sz,n) luaL_loadbufferx(L,s,sz,n,NULL) argument
161 #define luaL_addsize(B,s) ((B)->n += (s)) argument
223 #define lua_writestring(s,l) fwrite((s), sizeof(char), (l), stdout) argument
233 #define lua_writestringerror(s,p) \ argument
Dlauxlib.c391 const char *s = lua_tolstring(L, arg, len); in luaL_checklstring() local
528 LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) { in luaL_addlstring()
537 LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) { in luaL_addstring()
561 const char *s = lua_tolstring(L, -1, &l); in luaL_addvalue() local
740 const char *s; member
764 LUALIB_API int luaL_loadstring (lua_State *L, const char *s) { in luaL_loadstring()
991 LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const char *p, in luaL_gsub()
/civetweb-2.7.6/src/third_party/
DLuaXML_lib.c69 static size_t find(const char* s, const char* pattern, size_t start) { in find()
78 const char* s; member
112 static const char* Tokenizer_set(Tokenizer* tok, const char* s, size_t size) { in Tokenizer_set()
248 static void Xml_pushDecode(lua_State* L, const char* s, size_t s_size) { in Xml_pushDecode()
417 const char* s; in Xml_encode() local
/civetweb-2.7.6/src/
Dmd5.inl287 #define SET(a, b, c, d, k, s, Ti) \ argument
314 #define SET(a, b, c, d, k, s, Ti) \ argument
341 #define SET(a, b, c, d, k, s, Ti) \ argument
368 #define SET(a, b, c, d, k, s, Ti) \ argument

12345