Github User Fetcher 1.0.0
C Application with Server and GUI
|
Go to the source code of this file.
Data Structures | |
union | L_Umaxalign |
Macros | |
#define | MAX_SIZET ((size_t)(~(size_t)0)) |
#define | MAX_SIZE |
#define | MAX_LUMEM ((lu_mem)(~(lu_mem)0)) |
#define | MAX_LMEM ((l_mem)(MAX_LUMEM >> 1)) |
#define | MAX_INT INT_MAX /* maximum value of an int */ |
#define | point2uint(p) ((unsigned int)((size_t)(p) & UINT_MAX)) |
#define | lua_assert(c) ((void)0) |
#define | check_exp(c, e) (e) |
#define | lua_longassert(c) ((void)0) |
#define | luai_apicheck(l, e) lua_assert(e) |
#define | api_check(l, e, msg) luai_apicheck(l,(e) && msg) |
#define | UNUSED(x) ((void)(x)) |
#define | cast(t, exp) ((t)(exp)) |
#define | cast_void(i) cast(void, (i)) |
#define | cast_byte(i) cast(lu_byte, (i)) |
#define | cast_num(i) cast(lua_Number, (i)) |
#define | cast_int(i) cast(int, (i)) |
#define | cast_uchar(i) cast(unsigned char, (i)) |
#define | l_castS2U(i) ((lua_Unsigned)(i)) |
#define | l_castU2S(i) ((lua_Integer)(i)) |
#define | l_noret void |
#define | LUAI_MAXCCALLS 200 |
#define | LUAI_MAXSHORTLEN 40 |
#define | MINSTRTABSIZE 128 |
#define | STRCACHE_N 53 |
#define | STRCACHE_M 2 |
#define | LUA_MINBUFFER 32 |
#define | lua_lock(L) ((void) 0) |
#define | lua_unlock(L) ((void) 0) |
#define | luai_threadyield(L) {lua_unlock(L); lua_lock(L);} |
#define | luai_userstateopen(L) ((void)L) |
#define | luai_userstateclose(L) ((void)L) |
#define | luai_userstatethread(L, L1) ((void)L) |
#define | luai_userstatefree(L, L1) ((void)L) |
#define | luai_userstateresume(L, n) ((void)L) |
#define | luai_userstateyield(L, n) ((void)L) |
#define | luai_numidiv(L, a, b) ((void)L, l_floor(luai_numdiv(L,a,b))) |
#define | luai_numdiv(L, a, b) ((a)/(b)) |
#define | luai_nummod(L, a, b, m) { (m) = l_mathop(fmod)(a,b); if ((m)*(b) < 0) (m) += (b); } |
#define | luai_numpow(L, a, b) ((void)L, l_mathop(pow)(a,b)) |
#define | luai_numadd(L, a, b) ((a)+(b)) |
#define | luai_numsub(L, a, b) ((a)-(b)) |
#define | luai_nummul(L, a, b) ((a)*(b)) |
#define | luai_numunm(L, a) (-(a)) |
#define | luai_numeq(a, b) ((a)==(b)) |
#define | luai_numlt(a, b) ((a)<(b)) |
#define | luai_numle(a, b) ((a)<=(b)) |
#define | luai_numisnan(a) (!luai_numeq((a), (a))) |
#define | condmovestack(L, pre, pos) ((void)0) |
#define | condchangemem(L, pre, pos) ((void)0) |
Typedefs | |
typedef unsigned long | lu_mem |
typedef long | l_mem |
typedef unsigned char | lu_byte |
typedef LUAI_UACNUMBER | l_uacNumber |
typedef LUAI_UACINT | l_uacInt |
typedef unsigned long | Instruction |
#define api_check | ( | l, | |
e, | |||
msg ) luai_apicheck(l,(e) && msg) |
Definition at line 101 of file lua-5.3.6/src/llimits.h.
#define cast | ( | t, | |
exp ) ((t)(exp)) |
Definition at line 111 of file lua-5.3.6/src/llimits.h.
Definition at line 114 of file lua-5.3.6/src/llimits.h.
#define cast_int | ( | i | ) | cast(int, (i)) |
Definition at line 116 of file lua-5.3.6/src/llimits.h.
#define cast_num | ( | i | ) | cast(lua_Number, (i)) |
Definition at line 115 of file lua-5.3.6/src/llimits.h.
#define cast_uchar | ( | i | ) | cast(unsigned char, (i)) |
Definition at line 117 of file lua-5.3.6/src/llimits.h.
#define cast_void | ( | i | ) | cast(void, (i)) |
Definition at line 113 of file lua-5.3.6/src/llimits.h.
Referenced by luaV_concat(), luaV_execute(), readutf8esc(), and traversetable().
#define check_exp | ( | c, | |
e ) (e) |
Definition at line 90 of file lua-5.3.6/src/llimits.h.
#define condchangemem | ( | L, | |
pre, | |||
pos ) ((void)0) |
Definition at line 317 of file lua-5.3.6/src/llimits.h.
#define condmovestack | ( | L, | |
pre, | |||
pos ) ((void)0) |
Definition at line 309 of file lua-5.3.6/src/llimits.h.
#define l_castS2U | ( | i | ) | ((lua_Unsigned)(i)) |
Definition at line 122 of file lua-5.3.6/src/llimits.h.
Referenced by arrayindex(), fitsC(), forprep(), hash_search(), intarith(), intarith(), isCint(), luaH_getint(), luaV_div(), luaV_execute(), luaV_execute(), luaV_idiv(), luaV_mod(), and unbound_search().
#define l_castU2S | ( | i | ) | ((lua_Integer)(i)) |
Definition at line 131 of file lua-5.3.6/src/llimits.h.
Referenced by forprep(), l_str2int(), and l_str2int().
#define l_noret void |
Definition at line 143 of file lua-5.3.6/src/llimits.h.
#define lua_assert | ( | c | ) | ((void)0) |
Definition at line 89 of file lua-5.3.6/src/llimits.h.
#define lua_lock | ( | L | ) | ((void) 0) |
Definition at line 214 of file lua-5.3.6/src/llimits.h.
#define lua_longassert | ( | c | ) | ((void)0) |
Definition at line 91 of file lua-5.3.6/src/llimits.h.
#define LUA_MINBUFFER 32 |
Definition at line 205 of file lua-5.3.6/src/llimits.h.
#define lua_unlock | ( | L | ) | ((void) 0) |
Definition at line 215 of file lua-5.3.6/src/llimits.h.
#define luai_apicheck | ( | l, | |
e ) lua_assert(e) |
Definition at line 98 of file lua-5.3.6/src/llimits.h.
#define LUAI_MAXCCALLS 200 |
Definition at line 153 of file lua-5.3.6/src/llimits.h.
#define LUAI_MAXSHORTLEN 40 |
Definition at line 177 of file lua-5.3.6/src/llimits.h.
Definition at line 291 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), floatforloop(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_execute(), numarith(), and numarith().
Definition at line 269 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_execute(), numarith(), and numarith().
Definition at line 295 of file lua-5.3.6/src/llimits.h.
Referenced by arrayindex(), arrayindex(), equalkey(), hashnum(), luaH_get(), luaH_getint(), luaH_getnum(), luaO_rawequalObj(), luaV_equalobj(), luaV_equalobj_(), luaV_equalval(), and luaV_execute().
#define luai_numidiv | ( | L, | |
a, | |||
b ) ((void)L, l_floor(luai_numdiv(L,a,b))) |
Definition at line 264 of file lua-5.3.6/src/llimits.h.
Referenced by luaV_execute(), luaV_execute(), numarith(), and numarith().
#define luai_numisnan | ( | a | ) | (!luai_numeq((a), (a))) |
Definition at line 298 of file lua-5.3.6/src/llimits.h.
Referenced by constfolding(), constfolding(), constfolding(), l_hashfloat(), l_hashfloat(), LEnum(), LTnum(), luaH_newkey(), luaH_newkey(), luaH_set(), and luaK_numberK().
Definition at line 297 of file lua-5.3.6/src/llimits.h.
Referenced by floatforloop(), LEfloatint(), LEintfloat(), LEintfloat(), LEnum(), LEnum(), lessequal(), luaV_execute(), luaV_execute(), luaV_execute(), and luaV_lessequal().
Definition at line 296 of file lua-5.3.6/src/llimits.h.
Referenced by floatforloop(), forlimit(), forlimit(), forprep(), LTfloatint(), LTintfloat(), LTintfloat(), LTnum(), LTnum(), luaV_execute(), luaV_execute(), luaV_execute(), and luaV_lessthan().
Definition at line 280 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_modf(), and numarith().
Definition at line 293 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_execute(), numarith(), and numarith().
Definition at line 286 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_execute(), numarith(), and numarith().
Definition at line 292 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_execute(), numarith(), and numarith().
Definition at line 294 of file lua-5.3.6/src/llimits.h.
Referenced by Arith(), constfolding(), luaK_prefix(), luaO_arith(), luaV_execute(), luaV_execute(), luaV_execute(), numarith(), and numarith().
#define luai_threadyield | ( | L | ) | {lua_unlock(L); lua_lock(L);} |
Definition at line 223 of file lua-5.3.6/src/llimits.h.
#define luai_userstateclose | ( | L | ) | ((void)L) |
Definition at line 237 of file lua-5.3.6/src/llimits.h.
#define luai_userstatefree | ( | L, | |
L1 ) ((void)L) |
Definition at line 245 of file lua-5.3.6/src/llimits.h.
#define luai_userstateopen | ( | L | ) | ((void)L) |
Definition at line 233 of file lua-5.3.6/src/llimits.h.
#define luai_userstateresume | ( | L, | |
n ) ((void)L) |
Definition at line 249 of file lua-5.3.6/src/llimits.h.
#define luai_userstatethread | ( | L, | |
L1 ) ((void)L) |
Definition at line 241 of file lua-5.3.6/src/llimits.h.
#define luai_userstateyield | ( | L, | |
n ) ((void)L) |
Definition at line 253 of file lua-5.3.6/src/llimits.h.
#define MAX_INT INT_MAX /* maximum value of an int */ |
Definition at line 51 of file lua-5.3.6/src/llimits.h.
Definition at line 48 of file lua-5.3.6/src/llimits.h.
Definition at line 46 of file lua-5.3.6/src/llimits.h.
#define MAX_SIZE |
Definition at line 42 of file lua-5.3.6/src/llimits.h.
Referenced by luaS_newlstr(), luaS_newudata(), luaS_newudata(), luaV_concat(), save(), and save().
#define MAX_SIZET ((size_t)(~(size_t)0)) |
Definition at line 39 of file lua-5.3.6/src/llimits.h.
#define MINSTRTABSIZE 128 |
Definition at line 188 of file lua-5.3.6/src/llimits.h.
#define point2uint | ( | p | ) | ((unsigned int)((size_t)(p) & UINT_MAX)) |
Definition at line 59 of file lua-5.3.6/src/llimits.h.
Referenced by luaS_new().
#define STRCACHE_M 2 |
Definition at line 199 of file lua-5.3.6/src/llimits.h.
Referenced by luaS_clearcache(), luaS_init(), and luaS_new().
#define STRCACHE_N 53 |
Definition at line 198 of file lua-5.3.6/src/llimits.h.
Referenced by luaS_clearcache(), luaS_init(), and luaS_new().
#define UNUSED | ( | x | ) | ((void)(x)) |
Definition at line 106 of file lua-5.3.6/src/llimits.h.
typedef unsigned long Instruction |
Definition at line 165 of file lua-5.3.6/src/llimits.h.
typedef long l_mem |
Definition at line 30 of file lua-5.3.6/src/llimits.h.
typedef LUAI_UACINT l_uacInt |
Definition at line 80 of file lua-5.3.6/src/llimits.h.
typedef LUAI_UACNUMBER l_uacNumber |
Definition at line 79 of file lua-5.3.6/src/llimits.h.
typedef unsigned char lu_byte |
Definition at line 35 of file lua-5.3.6/src/llimits.h.
typedef unsigned long lu_mem |
Definition at line 29 of file lua-5.3.6/src/llimits.h.