Github User Fetcher 1.0.0
C Application with Server and GUI
|
Go to the source code of this file.
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 | log2maxs(t) (sizeof(t) * 8 - 2) |
#define | ispow2(x) (((x) & ((x) - 1)) == 0) |
#define | LL(x) (sizeof(x)/sizeof(char) - 1) |
#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) ((void)l, 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_voidp(i) cast(void *, (i)) |
#define | cast_num(i) cast(lua_Number, (i)) |
#define | cast_int(i) cast(int, (i)) |
#define | cast_uint(i) cast(unsigned int, (i)) |
#define | cast_byte(i) cast(lu_byte, (i)) |
#define | cast_uchar(i) cast(unsigned char, (i)) |
#define | cast_char(i) cast(char, (i)) |
#define | cast_charp(i) cast(char *, (i)) |
#define | cast_sizet(i) cast(size_t, (i)) |
#define | l_castS2U(i) ((lua_Unsigned)(i)) |
#define | l_castU2S(i) ((lua_Integer)(i)) |
#define | l_noret void |
#define | LUAI_MAXSHORTLEN 40 |
#define | MINSTRTABSIZE 128 |
#define | STRCACHE_N 53 |
#define | STRCACHE_M 2 |
#define | LUA_MINBUFFER 32 |
#define | LUAI_MAXCCALLS 200 |
#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) |
#define | luai_numpow(L, a, b) ((void)L, (b == 2) ? (a)*(a) : 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_numgt(a, b) ((a)>(b)) |
#define | luai_numge(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 signed char | ls_byte |
typedef LUAI_UACNUMBER | l_uacNumber |
typedef LUAI_UACINT | l_uacInt |
typedef unsigned long | l_uint32 |
typedef l_uint32 | Instruction |
#define api_check | ( | l, | |
e, | |||
msg ) luai_apicheck(l,(e) && msg) |
Definition at line 113 of file lua-5.4.3/src/llimits.h.
#define cast | ( | t, | |
exp ) ((t)(exp)) |
Definition at line 123 of file lua-5.4.3/src/llimits.h.
Definition at line 130 of file lua-5.4.3/src/llimits.h.
#define cast_char | ( | i | ) | cast(char, (i)) |
Definition at line 132 of file lua-5.4.3/src/llimits.h.
Referenced by luaO_utf8esc(), and save().
#define cast_charp | ( | i | ) | cast(char *, (i)) |
Definition at line 133 of file lua-5.4.3/src/llimits.h.
#define cast_int | ( | i | ) | cast(int, (i)) |
Definition at line 128 of file lua-5.4.3/src/llimits.h.
#define cast_num | ( | i | ) | cast(lua_Number, (i)) |
Definition at line 127 of file lua-5.4.3/src/llimits.h.
#define cast_sizet | ( | i | ) | cast(size_t, (i)) |
Definition at line 134 of file lua-5.4.3/src/llimits.h.
Referenced by freehash(), lua_topointer(), luaK_intK(), luaM_growaux_(), and luaM_shrinkvector_().
#define cast_uchar | ( | i | ) | cast(unsigned char, (i)) |
Definition at line 131 of file lua-5.4.3/src/llimits.h.
#define cast_uint | ( | i | ) | cast(unsigned int, (i)) |
Definition at line 129 of file lua-5.4.3/src/llimits.h.
Referenced by arrayindex(), aux_upvalue(), fitsC(), getbaseline(), l_hashfloat(), lua_setiuservalue(), luaF_newtbcupval(), luaH_getint(), luai_makeseed(), and luaS_hash().
#define cast_void | ( | i | ) | cast(void, (i)) |
Definition at line 125 of file lua-5.4.3/src/llimits.h.
#define cast_voidp | ( | i | ) | cast(void *, (i)) |
Definition at line 126 of file lua-5.4.3/src/llimits.h.
Referenced by lua_rawgetp(), lua_rawsetp(), lua_topointer(), and luaK_intK().
#define check_exp | ( | c, | |
e ) (e) |
Definition at line 102 of file lua-5.4.3/src/llimits.h.
#define condchangemem | ( | L, | |
pre, | |||
pos ) ((void)0) |
Definition at line 347 of file lua-5.4.3/src/llimits.h.
#define condmovestack | ( | L, | |
pre, | |||
pos ) ((void)0) |
Definition at line 339 of file lua-5.4.3/src/llimits.h.
#define ispow2 | ( | x | ) | (((x) & ((x) - 1)) == 0) |
Definition at line 66 of file lua-5.4.3/src/llimits.h.
Referenced by ispow2realasize(), luaH_getn(), and luaH_realasize().
#define l_castS2U | ( | i | ) | ((lua_Unsigned)(i)) |
Definition at line 139 of file lua-5.4.3/src/llimits.h.
#define l_castU2S | ( | i | ) | ((lua_Integer)(i)) |
Definition at line 148 of file lua-5.4.3/src/llimits.h.
#define l_noret void |
Definition at line 162 of file lua-5.4.3/src/llimits.h.
#define LL | ( | x | ) | (sizeof(x)/sizeof(char) - 1) |
Definition at line 70 of file lua-5.4.3/src/llimits.h.
#define log2maxs | ( | t | ) | (sizeof(t) * 8 - 2) |
Definition at line 60 of file lua-5.4.3/src/llimits.h.
Referenced by incstep().
#define lua_assert | ( | c | ) | ((void)0) |
Definition at line 101 of file lua-5.4.3/src/llimits.h.
#define lua_lock | ( | L | ) | ((void) 0) |
Definition at line 237 of file lua-5.4.3/src/llimits.h.
#define lua_longassert | ( | c | ) | ((void)0) |
Definition at line 103 of file lua-5.4.3/src/llimits.h.
#define LUA_MINBUFFER 32 |
Definition at line 217 of file lua-5.4.3/src/llimits.h.
#define lua_unlock | ( | L | ) | ((void) 0) |
Definition at line 238 of file lua-5.4.3/src/llimits.h.
#define luai_apicheck | ( | l, | |
e ) ((void)l, lua_assert(e)) |
Definition at line 110 of file lua-5.4.3/src/llimits.h.
#define LUAI_MAXCCALLS 200 |
Definition at line 228 of file lua-5.4.3/src/llimits.h.
#define LUAI_MAXSHORTLEN 40 |
Definition at line 189 of file lua-5.4.3/src/llimits.h.
Definition at line 319 of file lua-5.4.3/src/llimits.h.
Definition at line 291 of file lua-5.4.3/src/llimits.h.
Definition at line 323 of file lua-5.4.3/src/llimits.h.
Definition at line 327 of file lua-5.4.3/src/llimits.h.
Referenced by luaV_execute().
Definition at line 326 of file lua-5.4.3/src/llimits.h.
Referenced by luaV_execute().
#define luai_numidiv | ( | L, | |
a, | |||
b ) ((void)L, l_floor(luai_numdiv(L,a,b))) |
Definition at line 286 of file lua-5.4.3/src/llimits.h.
#define luai_numisnan | ( | a | ) | (!luai_numeq((a), (a))) |
Definition at line 328 of file lua-5.4.3/src/llimits.h.
Definition at line 325 of file lua-5.4.3/src/llimits.h.
Definition at line 324 of file lua-5.4.3/src/llimits.h.
#define luai_nummod | ( | L, | |
a, | |||
b, | |||
m ) |
Definition at line 306 of file lua-5.4.3/src/llimits.h.
Definition at line 321 of file lua-5.4.3/src/llimits.h.
Definition at line 313 of file lua-5.4.3/src/llimits.h.
Definition at line 320 of file lua-5.4.3/src/llimits.h.
Definition at line 322 of file lua-5.4.3/src/llimits.h.
#define luai_threadyield | ( | L | ) | {lua_unlock(L); lua_lock(L);} |
Definition at line 246 of file lua-5.4.3/src/llimits.h.
#define luai_userstateclose | ( | L | ) | ((void)L) |
Definition at line 259 of file lua-5.4.3/src/llimits.h.
#define luai_userstatefree | ( | L, | |
L1 ) ((void)L) |
Definition at line 267 of file lua-5.4.3/src/llimits.h.
#define luai_userstateopen | ( | L | ) | ((void)L) |
Definition at line 255 of file lua-5.4.3/src/llimits.h.
#define luai_userstateresume | ( | L, | |
n ) ((void)L) |
Definition at line 271 of file lua-5.4.3/src/llimits.h.
#define luai_userstatethread | ( | L, | |
L1 ) ((void)L) |
Definition at line 263 of file lua-5.4.3/src/llimits.h.
#define luai_userstateyield | ( | L, | |
n ) ((void)L) |
Definition at line 275 of file lua-5.4.3/src/llimits.h.
#define MAX_INT INT_MAX /* maximum value of an int */ |
Definition at line 53 of file lua-5.4.3/src/llimits.h.
Definition at line 50 of file lua-5.4.3/src/llimits.h.
Definition at line 48 of file lua-5.4.3/src/llimits.h.
#define MAX_SIZE |
Definition at line 44 of file lua-5.4.3/src/llimits.h.
#define MAX_SIZET ((size_t)(~(size_t)0)) |
Definition at line 41 of file lua-5.4.3/src/llimits.h.
#define MINSTRTABSIZE 128 |
Definition at line 200 of file lua-5.4.3/src/llimits.h.
#define point2uint | ( | p | ) | ((unsigned int)((size_t)(p) & UINT_MAX)) |
Definition at line 78 of file lua-5.4.3/src/llimits.h.
#define STRCACHE_M 2 |
Definition at line 211 of file lua-5.4.3/src/llimits.h.
#define STRCACHE_N 53 |
Definition at line 210 of file lua-5.4.3/src/llimits.h.
#define UNUSED | ( | x | ) | ((void)(x)) |
Definition at line 118 of file lua-5.4.3/src/llimits.h.
typedef l_uint32 Instruction |
Definition at line 178 of file lua-5.4.3/src/llimits.h.
typedef long l_mem |
Definition at line 31 of file lua-5.4.3/src/llimits.h.
typedef LUAI_UACINT l_uacInt |
Definition at line 84 of file lua-5.4.3/src/llimits.h.
typedef LUAI_UACNUMBER l_uacNumber |
Definition at line 83 of file lua-5.4.3/src/llimits.h.
typedef unsigned long l_uint32 |
Definition at line 175 of file lua-5.4.3/src/llimits.h.
typedef signed char ls_byte |
Definition at line 37 of file lua-5.4.3/src/llimits.h.
typedef unsigned char lu_byte |
Definition at line 36 of file lua-5.4.3/src/llimits.h.
typedef unsigned long lu_mem |
Definition at line 30 of file lua-5.4.3/src/llimits.h.