Home
last modified time | relevance | path

Searched refs:LUAI_FUNC (Results 1 – 19 of 19) sorted by relevance

/l4re-core-master/lua/lib/contrib/src/
A Dlcode.h62 LUAI_FUNC int luaK_code (FuncState *fs, Instruction i);
67 LUAI_FUNC int luaK_isKint (expdesc *e);
69 LUAI_FUNC void luaK_fixline (FuncState *fs, int line);
70 LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n);
71 LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n);
72 LUAI_FUNC void luaK_checkstack (FuncState *fs, int n);
78 LUAI_FUNC void luaK_exp2val (FuncState *fs, expdesc *e);
79 LUAI_FUNC int luaK_exp2RK (FuncState *fs, expdesc *e);
87 LUAI_FUNC int luaK_jump (FuncState *fs);
92 LUAI_FUNC int luaK_getlabel (FuncState *fs);
[all …]
A Dltable.h38 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
39 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, lua_Integer key,
41 LUAI_FUNC const TValue *luaH_getshortstr (Table *t, TString *key);
42 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
43 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
50 LUAI_FUNC Table *luaH_new (lua_State *L);
54 LUAI_FUNC void luaH_free (lua_State *L, Table *t);
55 LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
56 LUAI_FUNC lua_Unsigned luaH_getn (Table *t);
57 LUAI_FUNC unsigned int luaH_realasize (const Table *t);
[all …]
A Dldo.h58 LUAI_FUNC void luaD_hook (lua_State *L, int event, int line,
60 LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
63 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
65 LUAI_FUNC void luaD_tryfuncTM (lua_State *L, StkId func);
67 LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
69 LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
71 LUAI_FUNC int luaD_growstack (lua_State *L, int n, int raiseerror);
72 LUAI_FUNC void luaD_shrinkstack (lua_State *L);
73 LUAI_FUNC void luaD_inctop (lua_State *L);
75 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
[all …]
A Dldebug.h39 LUAI_FUNC int luaG_getfuncline (const Proto *f, int pc);
42 LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o,
44 LUAI_FUNC l_noret luaG_callerror (lua_State *L, const TValue *o);
45 LUAI_FUNC l_noret luaG_forerror (lua_State *L, const TValue *o,
47 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, const TValue *p1,
49 LUAI_FUNC l_noret luaG_opinterror (lua_State *L, const TValue *p1,
52 LUAI_FUNC l_noret luaG_tointerror (lua_State *L, const TValue *p1,
54 LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
57 LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg,
59 LUAI_FUNC l_noret luaG_errormsg (lua_State *L);
[all …]
A Dlstring.h44 LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l, unsigned int seed);
45 LUAI_FUNC unsigned int luaS_hashlongstr (TString *ts);
46 LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b);
47 LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
48 LUAI_FUNC void luaS_clearcache (global_State *g);
49 LUAI_FUNC void luaS_init (lua_State *L);
50 LUAI_FUNC void luaS_remove (lua_State *L, TString *ts);
51 LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, int nuvalue);
52 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
53 LUAI_FUNC TString *luaS_new (lua_State *L, const char *str);
[all …]
A Dlfunc.h50 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
51 LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nupvals);
52 LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nupvals);
53 LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
54 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
55 LUAI_FUNC void luaF_newtbcupval (lua_State *L, StkId level);
56 LUAI_FUNC void luaF_closeupval (lua_State *L, StkId level);
57 LUAI_FUNC void luaF_close (lua_State *L, StkId level, int status, int yy);
58 LUAI_FUNC void luaF_unlinkupval (UpVal *uv);
59 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
[all …]
A Dlvm.h118 LUAI_FUNC int luaV_tonumber_ (const TValue *obj, lua_Number *n);
120 LUAI_FUNC int luaV_tointegerns (const TValue *obj, lua_Integer *p,
122 LUAI_FUNC int luaV_flttointeger (lua_Number n, lua_Integer *p, F2Imod mode);
123 LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key,
125 LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
127 LUAI_FUNC void luaV_finishOp (lua_State *L);
128 LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
129 LUAI_FUNC void luaV_concat (lua_State *L, int total);
132 LUAI_FUNC lua_Number luaV_modf (lua_State *L, lua_Number x, lua_Number y);
133 LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
[all …]
A Dltm.h74 LUAI_FUNC const char *luaT_objtypename (lua_State *L, const TValue *o);
77 LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
79 LUAI_FUNC void luaT_init (lua_State *L);
81 LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
83 LUAI_FUNC void luaT_callTMres (lua_State *L, const TValue *f,
87 LUAI_FUNC void luaT_tryconcatTM (lua_State *L);
88 LUAI_FUNC void luaT_trybinassocTM (lua_State *L, const TValue *p1,
92 LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
94 LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2,
97 LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams,
[all …]
A Dllex.h81 LUAI_FUNC void luaX_init (lua_State *L);
82 LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
84 LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
85 LUAI_FUNC void luaX_next (LexState *ls);
86 LUAI_FUNC int luaX_lookahead (LexState *ls);
87 LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
88 LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
A Dlgc.h177 LUAI_FUNC void luaC_fix (lua_State *L, GCObject *o);
178 LUAI_FUNC void luaC_freeallobjects (lua_State *L);
179 LUAI_FUNC void luaC_step (lua_State *L);
180 LUAI_FUNC void luaC_runtilstate (lua_State *L, int statesmask);
181 LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency);
182 LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz);
183 LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v);
184 LUAI_FUNC void luaC_barrierback_ (lua_State *L, GCObject *o);
185 LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt);
186 LUAI_FUNC void luaC_changemode (lua_State *L, int newmode);
A Dlmem.h77 LUAI_FUNC l_noret luaM_toobig (lua_State *L);
80 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
82 LUAI_FUNC void *luaM_saferealloc_ (lua_State *L, void *block, size_t oldsize,
84 LUAI_FUNC void luaM_free_ (lua_State *L, void *block, size_t osize);
85 LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int nelems,
88 LUAI_FUNC void *luaM_shrinkvector_ (lua_State *L, void *block, int *nelem,
90 LUAI_FUNC void *luaM_malloc_ (lua_State *L, size_t size, int tag);
A Dlstate.h391 LUAI_FUNC void luaE_setdebt (global_State *g, l_mem debt);
392 LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1);
393 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
394 LUAI_FUNC void luaE_freeCI (lua_State *L);
395 LUAI_FUNC void luaE_shrinkCI (lua_State *L);
396 LUAI_FUNC void luaE_checkcstack (lua_State *L);
397 LUAI_FUNC void luaE_incCstack (lua_State *L);
398 LUAI_FUNC void luaE_warning (lua_State *L, const char *msg, int tocont);
399 LUAI_FUNC void luaE_warnerror (lua_State *L, const char *where);
400 LUAI_FUNC int luaE_resetthread (lua_State *L, int status);
A Dlzio.h47 LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader,
49 LUAI_FUNC size_t luaZ_read (ZIO* z, void *b, size_t n); /* read next n bytes */
64 LUAI_FUNC int luaZ_fill (ZIO *z);
A Dlundump.h30 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
33 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
A Dlobject.h784 LUAI_FUNC int luaO_utf8esc (char *buff, unsigned long x);
785 LUAI_FUNC int luaO_ceillog2 (unsigned int x);
786 LUAI_FUNC int luaO_rawarith (lua_State *L, int op, const TValue *p1,
788 LUAI_FUNC void luaO_arith (lua_State *L, int op, const TValue *p1,
790 LUAI_FUNC size_t luaO_str2num (const char *s, TValue *o);
791 LUAI_FUNC int luaO_hexavalue (int c);
792 LUAI_FUNC void luaO_tostring (lua_State *L, TValue *obj);
793 LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt,
795 LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...);
796 LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t srclen);
A Dlparser.h166 LUAI_FUNC int luaY_nvarstack (FuncState *fs);
167 LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
A Dluaconf.h310 #define LUAI_FUNC __attribute__((visibility("internal"))) extern macro
312 #define LUAI_FUNC extern macro
315 #define LUAI_DDEC(dec) LUAI_FUNC dec
A Dlstate.c173 LUAI_FUNC void luaE_incCstack (lua_State *L) { in luaE_incCstack()
A Dltable.c241 LUAI_FUNC unsigned int luaH_realasize (const Table *t) { in luaH_realasize()

Completed in 26 milliseconds