Macros | Typedefs
llimits.h File Reference
#include <limits.h>
#include <stddef.h>
#include "lua.h"
Include dependency graph for llimits.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define api_check(l, e, msg)   luai_apicheck(l,(e) && msg)
 
#define cast(t, exp)   ((t)(exp))
 
#define cast_byte(i)   cast(lu_byte, (i))
 
#define cast_char(i)   cast(char, (i))
 
#define cast_charp(i)   cast(char *, (i))
 
#define cast_int(i)   cast(int, (i))
 
#define cast_num(i)   cast(lua_Number, (i))
 
#define cast_sizet(i)   cast(size_t, (i))
 
#define cast_uchar(i)   cast(unsigned char, (i))
 
#define cast_uint(i)   cast(unsigned int, (i))
 
#define cast_void(i)   cast(void, (i))
 
#define cast_voidp(i)   cast(void *, (i))
 
#define check_exp(c, e)   (e)
 
#define condchangemem(L, pre, pos)   ((void)0)
 
#define condmovestack(L, pre, pos)   ((void)0)
 
#define ispow2(x)   (((x) & ((x) - 1)) == 0)
 
#define l_castS2U(i)   ((lua_Unsigned)(i))
 
#define l_castU2S(i)   ((lua_Integer)(i))
 
#define l_noret   void
 
#define LL(x)   (sizeof(x)/sizeof(char) - 1)
 
#define log2maxs(t)   (sizeof(t) * 8 - 2)
 
#define lua_assert(c)   ((void)0)
 
#define lua_lock(L)   ((void) 0)
 
#define lua_longassert(c)   ((void)0)
 
#define LUA_MINBUFFER   32
 
#define lua_unlock(L)   ((void) 0)
 
#define luai_apicheck(l, e)   ((void)l, lua_assert(e))
 
#define LUAI_MAXCCALLS   200
 
#define LUAI_MAXSHORTLEN   40
 
#define luai_numadd(L, a, b)   ((a)+(b))
 
#define luai_numdiv(L, a, b)   ((a)/(b))
 
#define luai_numeq(a, b)   ((a)==(b))
 
#define luai_numge(a, b)   ((a)>=(b))
 
#define luai_numgt(a, b)   ((a)>(b))
 
#define luai_numidiv(L, a, b)   ((void)L, l_floor(luai_numdiv(L,a,b)))
 
#define luai_numisnan(a)   (!luai_numeq((a), (a)))
 
#define luai_numle(a, b)   ((a)<=(b))
 
#define luai_numlt(a, b)   ((a)<(b))
 
#define luai_nummod(L, a, b, m)
 
#define luai_nummul(L, a, b)   ((a)*(b))
 
#define luai_numpow(L, a, b)   ((void)L, (b == 2) ? (a)*(a) : l_mathop(pow)(a,b))
 
#define luai_numsub(L, a, b)   ((a)-(b))
 
#define luai_numunm(L, a)   (-(a))
 
#define luai_threadyield(L)   {lua_unlock(L); lua_lock(L);}
 
#define luai_userstateclose(L)   ((void)L)
 
#define luai_userstatefree(L, L1)   ((void)L)
 
#define luai_userstateopen(L)   ((void)L)
 
#define luai_userstateresume(L, n)   ((void)L)
 
#define luai_userstatethread(L, L1)   ((void)L)
 
#define luai_userstateyield(L, n)   ((void)L)
 
#define MAX_INT   INT_MAX /* maximum value of an int */
 
#define MAX_LMEM   ((l_mem)(MAX_LUMEM >> 1))
 
#define MAX_LUMEM   ((lu_mem)(~(lu_mem)0))
 
#define MAX_SIZE
 
#define MAX_SIZET   ((size_t)(~(size_t)0))
 
#define MINSTRTABSIZE   128
 
#define point2uint(p)   ((unsigned int)((size_t)(p) & UINT_MAX))
 
#define STRCACHE_M   2
 
#define STRCACHE_N   53
 
#define UNUSED(x)   ((void)(x))
 

Typedefs

typedef l_uint32 Instruction
 
typedef long l_mem
 
typedef LUAI_UACINT l_uacInt
 
typedef LUAI_UACNUMBER l_uacNumber
 
typedef unsigned long l_uint32
 
typedef signed char ls_byte
 
typedef unsigned char lu_byte
 
typedef unsigned long lu_mem
 

Macro Definition Documentation

◆ api_check

#define api_check (   l,
  e,
  msg 
)    luai_apicheck(l,(e) && msg)

Definition at line 113 of file llimits.h.

◆ cast

#define cast (   t,
  exp 
)    ((t)(exp))

Definition at line 123 of file llimits.h.

◆ cast_byte

#define cast_byte (   i)    cast(lu_byte, (i))

Definition at line 130 of file llimits.h.

◆ cast_char

#define cast_char (   i)    cast(char, (i))

Definition at line 132 of file llimits.h.

◆ cast_charp

#define cast_charp (   i)    cast(char *, (i))

Definition at line 133 of file llimits.h.

◆ cast_int

#define cast_int (   i)    cast(int, (i))

Definition at line 128 of file llimits.h.

◆ cast_num

#define cast_num (   i)    cast(lua_Number, (i))

Definition at line 127 of file llimits.h.

◆ cast_sizet

#define cast_sizet (   i)    cast(size_t, (i))

Definition at line 134 of file llimits.h.

◆ cast_uchar

#define cast_uchar (   i)    cast(unsigned char, (i))

Definition at line 131 of file llimits.h.

◆ cast_uint

#define cast_uint (   i)    cast(unsigned int, (i))

Definition at line 129 of file llimits.h.

◆ cast_void

#define cast_void (   i)    cast(void, (i))

Definition at line 125 of file llimits.h.

◆ cast_voidp

#define cast_voidp (   i)    cast(void *, (i))

Definition at line 126 of file llimits.h.

◆ check_exp

#define check_exp (   c,
 
)    (e)

Definition at line 102 of file llimits.h.

◆ condchangemem

#define condchangemem (   L,
  pre,
  pos 
)    ((void)0)

Definition at line 347 of file llimits.h.

◆ condmovestack

#define condmovestack (   L,
  pre,
  pos 
)    ((void)0)

Definition at line 339 of file llimits.h.

◆ ispow2

#define ispow2 (   x)    (((x) & ((x) - 1)) == 0)

Definition at line 66 of file llimits.h.

◆ l_castS2U

#define l_castS2U (   i)    ((lua_Unsigned)(i))

Definition at line 139 of file llimits.h.

◆ l_castU2S

#define l_castU2S (   i)    ((lua_Integer)(i))

Definition at line 148 of file llimits.h.

◆ l_noret

#define l_noret   void

Definition at line 162 of file llimits.h.

◆ LL

#define LL (   x)    (sizeof(x)/sizeof(char) - 1)

Definition at line 70 of file llimits.h.

◆ log2maxs

#define log2maxs (   t)    (sizeof(t) * 8 - 2)

Definition at line 60 of file llimits.h.

◆ lua_assert

#define lua_assert (   c)    ((void)0)

Definition at line 101 of file llimits.h.

◆ lua_lock

#define lua_lock (   L)    ((void) 0)

Definition at line 237 of file llimits.h.

◆ lua_longassert

#define lua_longassert (   c)    ((void)0)

Definition at line 103 of file llimits.h.

◆ LUA_MINBUFFER

#define LUA_MINBUFFER   32

Definition at line 217 of file llimits.h.

◆ lua_unlock

#define lua_unlock (   L)    ((void) 0)

Definition at line 238 of file llimits.h.

◆ luai_apicheck

#define luai_apicheck (   l,
 
)    ((void)l, lua_assert(e))

Definition at line 110 of file llimits.h.

◆ LUAI_MAXCCALLS

#define LUAI_MAXCCALLS   200

Definition at line 228 of file llimits.h.

◆ LUAI_MAXSHORTLEN

#define LUAI_MAXSHORTLEN   40

Definition at line 189 of file llimits.h.

◆ luai_numadd

#define luai_numadd (   L,
  a,
 
)    ((a)+(b))

Definition at line 319 of file llimits.h.

◆ luai_numdiv

#define luai_numdiv (   L,
  a,
 
)    ((a)/(b))

Definition at line 291 of file llimits.h.

◆ luai_numeq

#define luai_numeq (   a,
 
)    ((a)==(b))

Definition at line 323 of file llimits.h.

◆ luai_numge

#define luai_numge (   a,
 
)    ((a)>=(b))

Definition at line 327 of file llimits.h.

◆ luai_numgt

#define luai_numgt (   a,
 
)    ((a)>(b))

Definition at line 326 of file llimits.h.

◆ luai_numidiv

#define luai_numidiv (   L,
  a,
 
)    ((void)L, l_floor(luai_numdiv(L,a,b)))

Definition at line 286 of file llimits.h.

◆ luai_numisnan

#define luai_numisnan (   a)    (!luai_numeq((a), (a)))

Definition at line 328 of file llimits.h.

◆ luai_numle

#define luai_numle (   a,
 
)    ((a)<=(b))

Definition at line 325 of file llimits.h.

◆ luai_numlt

#define luai_numlt (   a,
 
)    ((a)<(b))

Definition at line 324 of file llimits.h.

◆ luai_nummod

#define luai_nummod (   L,
  a,
  b,
 
)
Value:
{ (void)L; (m) = l_mathop(fmod)(a,b); \
if (((m) > 0) ? (b) < 0 : ((m) < 0 && (b) > 0)) (m) += (b); }

Definition at line 306 of file llimits.h.

◆ luai_nummul

#define luai_nummul (   L,
  a,
 
)    ((a)*(b))

Definition at line 321 of file llimits.h.

◆ luai_numpow

#define luai_numpow (   L,
  a,
 
)    ((void)L, (b == 2) ? (a)*(a) : l_mathop(pow)(a,b))

Definition at line 313 of file llimits.h.

◆ luai_numsub

#define luai_numsub (   L,
  a,
 
)    ((a)-(b))

Definition at line 320 of file llimits.h.

◆ luai_numunm

#define luai_numunm (   L,
 
)    (-(a))

Definition at line 322 of file llimits.h.

◆ luai_threadyield

#define luai_threadyield (   L)    {lua_unlock(L); lua_lock(L);}

Definition at line 246 of file llimits.h.

◆ luai_userstateclose

#define luai_userstateclose (   L)    ((void)L)

Definition at line 259 of file llimits.h.

◆ luai_userstatefree

#define luai_userstatefree (   L,
  L1 
)    ((void)L)

Definition at line 267 of file llimits.h.

◆ luai_userstateopen

#define luai_userstateopen (   L)    ((void)L)

Definition at line 255 of file llimits.h.

◆ luai_userstateresume

#define luai_userstateresume (   L,
 
)    ((void)L)

Definition at line 271 of file llimits.h.

◆ luai_userstatethread

#define luai_userstatethread (   L,
  L1 
)    ((void)L)

Definition at line 263 of file llimits.h.

◆ luai_userstateyield

#define luai_userstateyield (   L,
 
)    ((void)L)

Definition at line 275 of file llimits.h.

◆ MAX_INT

#define MAX_INT   INT_MAX /* maximum value of an int */

Definition at line 53 of file llimits.h.

◆ MAX_LMEM

#define MAX_LMEM   ((l_mem)(MAX_LUMEM >> 1))

Definition at line 50 of file llimits.h.

◆ MAX_LUMEM

#define MAX_LUMEM   ((lu_mem)(~(lu_mem)0))

Definition at line 48 of file llimits.h.

◆ MAX_SIZE

#define MAX_SIZE
Value:
(sizeof(size_t) < sizeof(lua_Integer) ? MAX_SIZET \
: (size_t)(LUA_MAXINTEGER))

Definition at line 44 of file llimits.h.

◆ MAX_SIZET

#define MAX_SIZET   ((size_t)(~(size_t)0))

Definition at line 41 of file llimits.h.

◆ MINSTRTABSIZE

#define MINSTRTABSIZE   128

Definition at line 200 of file llimits.h.

◆ point2uint

#define point2uint (   p)    ((unsigned int)((size_t)(p) & UINT_MAX))

Definition at line 78 of file llimits.h.

◆ STRCACHE_M

#define STRCACHE_M   2

Definition at line 211 of file llimits.h.

◆ STRCACHE_N

#define STRCACHE_N   53

Definition at line 210 of file llimits.h.

◆ UNUSED

#define UNUSED (   x)    ((void)(x))

Definition at line 118 of file llimits.h.

Typedef Documentation

◆ Instruction

Definition at line 178 of file llimits.h.

◆ l_mem

typedef long l_mem

Definition at line 31 of file llimits.h.

◆ l_uacInt

Definition at line 84 of file llimits.h.

◆ l_uacNumber

typedef LUAI_UACNUMBER l_uacNumber

Definition at line 83 of file llimits.h.

◆ l_uint32

typedef unsigned long l_uint32

Definition at line 175 of file llimits.h.

◆ ls_byte

typedef signed char ls_byte

Definition at line 37 of file llimits.h.

◆ lu_byte

typedef unsigned char lu_byte

Definition at line 36 of file llimits.h.

◆ lu_mem

typedef unsigned long lu_mem

Definition at line 30 of file llimits.h.

nonstd::span_lite::size_t
span_CONFIG_SIZE_TYPE size_t
Definition: span.hpp:576
nlohmann::detail::void
j template void())
Definition: json.hpp:4061
lua_Integer
LUA_INTEGER lua_Integer
Definition: lua.h:94
MAX_SIZET
#define MAX_SIZET
Definition: llimits.h:41


plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Aug 11 2024 02:24:27