LUAI_FUNC          89 lib/lua/lapi.c LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o) {
LUAI_FUNC          14 lib/lua/lapi.h LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
LUAI_FUNC          35 lib/lua/lcode.c LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n) {
LUAI_FUNC          59 lib/lua/lcode.c LUAI_FUNC int luaK_jump (FuncState *fs) {
LUAI_FUNC          69 lib/lua/lcode.c LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret) {
LUAI_FUNC          94 lib/lua/lcode.c LUAI_FUNC int luaK_getlabel (FuncState *fs) {
LUAI_FUNC         169 lib/lua/lcode.c LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target) {
LUAI_FUNC         179 lib/lua/lcode.c LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list) {
LUAI_FUNC         185 lib/lua/lcode.c LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2) {
LUAI_FUNC         199 lib/lua/lcode.c LUAI_FUNC void luaK_checkstack (FuncState *fs, int n) {
LUAI_FUNC         209 lib/lua/lcode.c LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n) {
LUAI_FUNC         250 lib/lua/lcode.c LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s) {
LUAI_FUNC         257 lib/lua/lcode.c LUAI_FUNC int luaK_numberK (FuncState *fs, lua_Number r) {
LUAI_FUNC         280 lib/lua/lcode.c LUAI_FUNC void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) {
LUAI_FUNC         292 lib/lua/lcode.c LUAI_FUNC void luaK_setoneret (FuncState *fs, expdesc *e) {
LUAI_FUNC         304 lib/lua/lcode.c LUAI_FUNC void luaK_dischargevars (FuncState *fs, expdesc *e) {
LUAI_FUNC         414 lib/lua/lcode.c LUAI_FUNC void luaK_exp2nextreg (FuncState *fs, expdesc *e) {
LUAI_FUNC         422 lib/lua/lcode.c LUAI_FUNC int luaK_exp2anyreg (FuncState *fs, expdesc *e) {
LUAI_FUNC         436 lib/lua/lcode.c LUAI_FUNC void luaK_exp2val (FuncState *fs, expdesc *e) {
LUAI_FUNC         444 lib/lua/lcode.c LUAI_FUNC int luaK_exp2RK (FuncState *fs, expdesc *e) {
LUAI_FUNC         472 lib/lua/lcode.c LUAI_FUNC void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) {
LUAI_FUNC         503 lib/lua/lcode.c LUAI_FUNC void luaK_self (FuncState *fs, expdesc *e, expdesc *key) {
LUAI_FUNC         539 lib/lua/lcode.c LUAI_FUNC void luaK_goiftrue (FuncState *fs, expdesc *e) {
LUAI_FUNC         621 lib/lua/lcode.c LUAI_FUNC void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) {
LUAI_FUNC         689 lib/lua/lcode.c LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e) {
LUAI_FUNC         710 lib/lua/lcode.c LUAI_FUNC void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) {
LUAI_FUNC         737 lib/lua/lcode.c LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *e1, expdesc *e2) {
LUAI_FUNC         784 lib/lua/lcode.c LUAI_FUNC void luaK_fixline (FuncState *fs, int line) {
LUAI_FUNC         804 lib/lua/lcode.c LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) {
LUAI_FUNC         812 lib/lua/lcode.c LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {
LUAI_FUNC         819 lib/lua/lcode.c LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) {
LUAI_FUNC          45 lib/lua/lcode.h LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
LUAI_FUNC          46 lib/lua/lcode.h LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
LUAI_FUNC          47 lib/lua/lcode.h LUAI_FUNC void luaK_fixline (FuncState *fs, int line);
LUAI_FUNC          48 lib/lua/lcode.h LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n);
LUAI_FUNC          49 lib/lua/lcode.h LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n);
LUAI_FUNC          50 lib/lua/lcode.h LUAI_FUNC void luaK_checkstack (FuncState *fs, int n);
LUAI_FUNC          51 lib/lua/lcode.h LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s);
LUAI_FUNC          52 lib/lua/lcode.h LUAI_FUNC int luaK_numberK (FuncState *fs, lua_Number r);
LUAI_FUNC          53 lib/lua/lcode.h LUAI_FUNC void luaK_dischargevars (FuncState *fs, expdesc *e);
LUAI_FUNC          54 lib/lua/lcode.h LUAI_FUNC int luaK_exp2anyreg (FuncState *fs, expdesc *e);
LUAI_FUNC          55 lib/lua/lcode.h LUAI_FUNC void luaK_exp2nextreg (FuncState *fs, expdesc *e);
LUAI_FUNC          56 lib/lua/lcode.h LUAI_FUNC void luaK_exp2val (FuncState *fs, expdesc *e);
LUAI_FUNC          57 lib/lua/lcode.h LUAI_FUNC int luaK_exp2RK (FuncState *fs, expdesc *e);
LUAI_FUNC          58 lib/lua/lcode.h LUAI_FUNC void luaK_self (FuncState *fs, expdesc *e, expdesc *key);
LUAI_FUNC          59 lib/lua/lcode.h LUAI_FUNC void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k);
LUAI_FUNC          60 lib/lua/lcode.h LUAI_FUNC void luaK_goiftrue (FuncState *fs, expdesc *e);
LUAI_FUNC          61 lib/lua/lcode.h LUAI_FUNC void luaK_storevar (FuncState *fs, expdesc *var, expdesc *e);
LUAI_FUNC          62 lib/lua/lcode.h LUAI_FUNC void luaK_setreturns (FuncState *fs, expdesc *e, int nresults);
LUAI_FUNC          63 lib/lua/lcode.h LUAI_FUNC void luaK_setoneret (FuncState *fs, expdesc *e);
LUAI_FUNC          64 lib/lua/lcode.h LUAI_FUNC int luaK_jump (FuncState *fs);
LUAI_FUNC          65 lib/lua/lcode.h LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret);
LUAI_FUNC          66 lib/lua/lcode.h LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target);
LUAI_FUNC          67 lib/lua/lcode.h LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list);
LUAI_FUNC          68 lib/lua/lcode.h LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
LUAI_FUNC          69 lib/lua/lcode.h LUAI_FUNC int luaK_getlabel (FuncState *fs);
LUAI_FUNC          70 lib/lua/lcode.h LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *v);
LUAI_FUNC          71 lib/lua/lcode.h LUAI_FUNC void luaK_infix (FuncState *fs, BinOpr op, expdesc *v);
LUAI_FUNC          72 lib/lua/lcode.h LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, expdesc *v2);
LUAI_FUNC          73 lib/lua/lcode.h LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
LUAI_FUNC         290 lib/lua/ldebug.c LUAI_FUNC int luaG_checkopenop (Instruction i) {
LUAI_FUNC         484 lib/lua/ldebug.c LUAI_FUNC int luaG_checkcode (const Proto *pt) {
LUAI_FUNC         567 lib/lua/ldebug.c LUAI_FUNC void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
LUAI_FUNC         581 lib/lua/ldebug.c LUAI_FUNC void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
LUAI_FUNC         588 lib/lua/ldebug.c LUAI_FUNC void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) {
LUAI_FUNC         596 lib/lua/ldebug.c LUAI_FUNC int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) {
LUAI_FUNC         618 lib/lua/ldebug.c LUAI_FUNC void luaG_errormsg (lua_State *L) {
LUAI_FUNC         631 lib/lua/ldebug.c LUAI_FUNC void luaG_runerror (lua_State *L, const char *fmt, ...) {
LUAI_FUNC          21 lib/lua/ldebug.h LUAI_FUNC void luaG_typeerror (lua_State *L, const TValue *o,
LUAI_FUNC          23 lib/lua/ldebug.h LUAI_FUNC void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
LUAI_FUNC          24 lib/lua/ldebug.h LUAI_FUNC void luaG_aritherror (lua_State *L, const TValue *p1,
LUAI_FUNC          26 lib/lua/ldebug.h LUAI_FUNC int luaG_ordererror (lua_State *L, const TValue *p1,
LUAI_FUNC          28 lib/lua/ldebug.h LUAI_FUNC void luaG_runerror (lua_State *L, const char *fmt, ...);
LUAI_FUNC          29 lib/lua/ldebug.h LUAI_FUNC void luaG_errormsg (lua_State *L);
LUAI_FUNC          30 lib/lua/ldebug.h LUAI_FUNC int luaG_checkcode (const Proto *pt);
LUAI_FUNC          31 lib/lua/ldebug.h LUAI_FUNC int luaG_checkopenop (Instruction i);
LUAI_FUNC          51 lib/lua/ldo.c  LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) {
LUAI_FUNC          94 lib/lua/ldo.c  LUAI_FUNC void luaD_throw (lua_State *L, int errcode) {
LUAI_FUNC         111 lib/lua/ldo.c  LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) {
LUAI_FUNC         141 lib/lua/ldo.c  LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize) {
LUAI_FUNC         152 lib/lua/ldo.c  LUAI_FUNC void luaD_reallocCI (lua_State *L, int newsize) {
LUAI_FUNC         161 lib/lua/ldo.c  LUAI_FUNC void luaD_growstack (lua_State *L, int n) {
LUAI_FUNC         181 lib/lua/ldo.c  LUAI_FUNC void luaD_callhook (lua_State *L, int event, int line) {
LUAI_FUNC         265 lib/lua/ldo.c  LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults) {
LUAI_FUNC         343 lib/lua/ldo.c  LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult) {
LUAI_FUNC         370 lib/lua/ldo.c  LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults) {
LUAI_FUNC         456 lib/lua/ldo.c  LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
LUAI_FUNC         509 lib/lua/ldo.c  LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
LUAI_FUNC          40 lib/lua/ldo.h  LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name);
LUAI_FUNC          41 lib/lua/ldo.h  LUAI_FUNC void luaD_callhook (lua_State *L, int event, int line);
LUAI_FUNC          42 lib/lua/ldo.h  LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
LUAI_FUNC          43 lib/lua/ldo.h  LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
LUAI_FUNC          44 lib/lua/ldo.h  LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
LUAI_FUNC          46 lib/lua/ldo.h  LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
LUAI_FUNC          47 lib/lua/ldo.h  LUAI_FUNC void luaD_reallocCI (lua_State *L, int newsize);
LUAI_FUNC          48 lib/lua/ldo.h  LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
LUAI_FUNC          49 lib/lua/ldo.h  LUAI_FUNC void luaD_growstack (lua_State *L, int n);
LUAI_FUNC          51 lib/lua/ldo.h  LUAI_FUNC void luaD_throw (lua_State *L, int errcode);
LUAI_FUNC          52 lib/lua/ldo.h  LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
LUAI_FUNC          54 lib/lua/ldo.h  LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop);
LUAI_FUNC         153 lib/lua/ldump.c LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip)
LUAI_FUNC          23 lib/lua/lfunc.c LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e) {
LUAI_FUNC          33 lib/lua/lfunc.c LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems, Table *e) {
LUAI_FUNC          44 lib/lua/lfunc.c LUAI_FUNC UpVal *luaF_newupval (lua_State *L) {
LUAI_FUNC          53 lib/lua/lfunc.c LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level) {
LUAI_FUNC          89 lib/lua/lfunc.c LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv) {
LUAI_FUNC          96 lib/lua/lfunc.c LUAI_FUNC void luaF_close (lua_State *L, StkId level) {
LUAI_FUNC         115 lib/lua/lfunc.c LUAI_FUNC Proto *luaF_newproto (lua_State *L) {
LUAI_FUNC         141 lib/lua/lfunc.c LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f) {
LUAI_FUNC         152 lib/lua/lfunc.c LUAI_FUNC void luaF_freeclosure (lua_State *L, Closure *c) {
LUAI_FUNC         163 lib/lua/lfunc.c LUAI_FUNC const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
LUAI_FUNC          21 lib/lua/lfunc.h LUAI_FUNC Proto *luaF_newproto (lua_State *L);
LUAI_FUNC          22 lib/lua/lfunc.h LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e);
LUAI_FUNC          23 lib/lua/lfunc.h LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems, Table *e);
LUAI_FUNC          24 lib/lua/lfunc.h LUAI_FUNC UpVal *luaF_newupval (lua_State *L);
LUAI_FUNC          25 lib/lua/lfunc.h LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
LUAI_FUNC          26 lib/lua/lfunc.h LUAI_FUNC void luaF_close (lua_State *L, StkId level);
LUAI_FUNC          27 lib/lua/lfunc.h LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
LUAI_FUNC          28 lib/lua/lfunc.h LUAI_FUNC void luaF_freeclosure (lua_State *L, Closure *c);
LUAI_FUNC          29 lib/lua/lfunc.h LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv);
LUAI_FUNC          30 lib/lua/lfunc.h LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
LUAI_FUNC         128 lib/lua/lgc.c  LUAI_FUNC size_t luaC_separateudata (lua_State *L, int all) {
LUAI_FUNC         477 lib/lua/lgc.c  LUAI_FUNC void luaC_callGCTM (lua_State *L) {
LUAI_FUNC         483 lib/lua/lgc.c  LUAI_FUNC void luaC_freeall (lua_State *L) {
LUAI_FUNC         610 lib/lua/lgc.c  LUAI_FUNC void luaC_step (lua_State *L) {
LUAI_FUNC         635 lib/lua/lgc.c  LUAI_FUNC void luaC_fullgc (lua_State *L) {
LUAI_FUNC         661 lib/lua/lgc.c  LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v) {
LUAI_FUNC         674 lib/lua/lgc.c  LUAI_FUNC void luaC_barrierback (lua_State *L, Table *t) {
LUAI_FUNC         685 lib/lua/lgc.c  LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt) {
LUAI_FUNC         694 lib/lua/lgc.c  LUAI_FUNC void luaC_linkupval (lua_State *L, UpVal *uv) {
LUAI_FUNC          99 lib/lua/lgc.h  LUAI_FUNC size_t luaC_separateudata (lua_State *L, int all);
LUAI_FUNC         100 lib/lua/lgc.h  LUAI_FUNC void luaC_callGCTM (lua_State *L);
LUAI_FUNC         101 lib/lua/lgc.h  LUAI_FUNC void luaC_freeall (lua_State *L);
LUAI_FUNC         102 lib/lua/lgc.h  LUAI_FUNC void luaC_step (lua_State *L);
LUAI_FUNC         103 lib/lua/lgc.h  LUAI_FUNC void luaC_fullgc (lua_State *L);
LUAI_FUNC         104 lib/lua/lgc.h  LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
LUAI_FUNC         105 lib/lua/lgc.h  LUAI_FUNC void luaC_linkupval (lua_State *L, UpVal *uv);
LUAI_FUNC         106 lib/lua/lgc.h  LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v);
LUAI_FUNC         107 lib/lua/lgc.h  LUAI_FUNC void luaC_barrierback (lua_State *L, Table *t);
LUAI_FUNC          64 lib/lua/llex.c LUAI_FUNC void luaX_init (lua_State *L) {
LUAI_FUNC          78 lib/lua/llex.c LUAI_FUNC const char *luaX_token2str (LexState *ls, int token) {
LUAI_FUNC         102 lib/lua/llex.c LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token) {
LUAI_FUNC         112 lib/lua/llex.c LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *msg) {
LUAI_FUNC         117 lib/lua/llex.c LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l) {
LUAI_FUNC         140 lib/lua/llex.c LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source) {
LUAI_FUNC         452 lib/lua/llex.c LUAI_FUNC void luaX_next (LexState *ls) {
LUAI_FUNC         463 lib/lua/llex.c LUAI_FUNC void luaX_lookahead (LexState *ls) {
LUAI_FUNC          70 lib/lua/llex.h LUAI_FUNC void luaX_init (lua_State *L);
LUAI_FUNC          71 lib/lua/llex.h LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
LUAI_FUNC          73 lib/lua/llex.h LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
LUAI_FUNC          74 lib/lua/llex.h LUAI_FUNC void luaX_next (LexState *ls);
LUAI_FUNC          75 lib/lua/llex.h LUAI_FUNC void luaX_lookahead (LexState *ls);
LUAI_FUNC          76 lib/lua/llex.h LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token);
LUAI_FUNC          77 lib/lua/llex.h LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s);
LUAI_FUNC          78 lib/lua/llex.h LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
LUAI_FUNC          46 lib/lua/lmem.c LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size, size_t size_elems,
LUAI_FUNC          66 lib/lua/lmem.c LUAI_FUNC void *luaM_toobig (lua_State *L) {
LUAI_FUNC          76 lib/lua/lmem.c LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) {
LUAI_FUNC          41 lib/lua/lmem.h LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
LUAI_FUNC          43 lib/lua/lmem.h LUAI_FUNC void *luaM_toobig (lua_State *L);
LUAI_FUNC          44 lib/lua/lmem.h LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size,
LUAI_FUNC          35 lib/lua/lobject.c LUAI_FUNC int luaO_int2fb (unsigned int x) {
LUAI_FUNC          47 lib/lua/lobject.c LUAI_FUNC int luaO_fb2int (int x) {
LUAI_FUNC          54 lib/lua/lobject.c LUAI_FUNC int luaO_log2 (unsigned int x) {
LUAI_FUNC          72 lib/lua/lobject.c LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
LUAI_FUNC          90 lib/lua/lobject.c LUAI_FUNC int luaO_str2d (const char *s, lua_Number *result) {
LUAI_FUNC         111 lib/lua/lobject.c LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
LUAI_FUNC         172 lib/lua/lobject.c LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
LUAI_FUNC         182 lib/lua/lobject.c LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t bufflen) {
LUAI_FUNC         369 lib/lua/lobject.h LUAI_FUNC int luaO_log2 (unsigned int x);
LUAI_FUNC         370 lib/lua/lobject.h LUAI_FUNC int luaO_int2fb (unsigned int x);
LUAI_FUNC         371 lib/lua/lobject.h LUAI_FUNC int luaO_fb2int (int x);
LUAI_FUNC         372 lib/lua/lobject.h LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2);
LUAI_FUNC         373 lib/lua/lobject.h LUAI_FUNC int luaO_str2d (const char *s, lua_Number *result);
LUAI_FUNC         374 lib/lua/lobject.h LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt,
LUAI_FUNC         376 lib/lua/lobject.h LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...);
LUAI_FUNC         377 lib/lua/lobject.h LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t len);
LUAI_FUNC         383 lib/lua/lparser.c LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *name) {
LUAI_FUNC          78 lib/lua/lparser.h LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
LUAI_FUNC         119 lib/lua/lstate.c LUAI_FUNC lua_State *luaE_newthread (lua_State *L) {
LUAI_FUNC         134 lib/lua/lstate.c LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1) {
LUAI_FUNC         165 lib/lua/lstate.h LUAI_FUNC lua_State *luaE_newthread (lua_State *L);
LUAI_FUNC         166 lib/lua/lstate.h LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1);
LUAI_FUNC          22 lib/lua/lstring.c LUAI_FUNC void luaS_resize (lua_State *L, int newsize) {
LUAI_FUNC          75 lib/lua/lstring.c LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
LUAI_FUNC          96 lib/lua/lstring.c LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
LUAI_FUNC          26 lib/lua/lstring.h LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
LUAI_FUNC          27 lib/lua/lstring.h LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, Table *e);
LUAI_FUNC          28 lib/lua/lstring.h LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
LUAI_FUNC         162 lib/lua/ltable.c LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key) {
LUAI_FUNC         327 lib/lua/ltable.c LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize) {
LUAI_FUNC         358 lib/lua/ltable.c LUAI_FUNC Table *luaH_new (lua_State *L, int narray, int nhash) {
LUAI_FUNC         374 lib/lua/ltable.c LUAI_FUNC void luaH_free (lua_State *L, Table *t) {
LUAI_FUNC         435 lib/lua/ltable.c LUAI_FUNC const TValue *luaH_getnum (Table *t, int key) {
LUAI_FUNC         455 lib/lua/ltable.c LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key) {
LUAI_FUNC         469 lib/lua/ltable.c LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key) {
LUAI_FUNC         494 lib/lua/ltable.c LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key) {
LUAI_FUNC         508 lib/lua/ltable.c LUAI_FUNC TValue *luaH_setnum (lua_State *L, Table *t, int key) {
LUAI_FUNC         520 lib/lua/ltable.c LUAI_FUNC TValue *luaH_setstr (lua_State *L, Table *t, TString *key) {
LUAI_FUNC         560 lib/lua/ltable.c LUAI_FUNC int luaH_getn (Table *t) {
LUAI_FUNC          21 lib/lua/ltable.h LUAI_FUNC const TValue *luaH_getnum (Table *t, int key);
LUAI_FUNC          22 lib/lua/ltable.h LUAI_FUNC TValue *luaH_setnum (lua_State *L, Table *t, int key);
LUAI_FUNC          23 lib/lua/ltable.h LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
LUAI_FUNC          24 lib/lua/ltable.h LUAI_FUNC TValue *luaH_setstr (lua_State *L, Table *t, TString *key);
LUAI_FUNC          25 lib/lua/ltable.h LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
LUAI_FUNC          26 lib/lua/ltable.h LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
LUAI_FUNC          27 lib/lua/ltable.h LUAI_FUNC Table *luaH_new (lua_State *L, int narray, int lnhash);
LUAI_FUNC          28 lib/lua/ltable.h LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
LUAI_FUNC          29 lib/lua/ltable.h LUAI_FUNC void luaH_free (lua_State *L, Table *t);
LUAI_FUNC          30 lib/lua/ltable.h LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
LUAI_FUNC          31 lib/lua/ltable.h LUAI_FUNC int luaH_getn (Table *t);
LUAI_FUNC          35 lib/lua/ltable.h LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
LUAI_FUNC          36 lib/lua/ltable.h LUAI_FUNC int luaH_isdummy (Node *n);
LUAI_FUNC          30 lib/lua/ltm.c  LUAI_FUNC void luaT_init (lua_State *L) {
LUAI_FUNC          50 lib/lua/ltm.c  LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename) {
LUAI_FUNC          61 lib/lua/ltm.c  LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
LUAI_FUNC          49 lib/lua/ltm.h  LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
LUAI_FUNC          50 lib/lua/ltm.h  LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
LUAI_FUNC          52 lib/lua/ltm.h  LUAI_FUNC void luaT_init (lua_State *L);
LUAI_FUNC         211 lib/lua/luaconf.h #define LUAI_DATA   LUAI_FUNC
LUAI_FUNC         195 lib/lua/lundump.c LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name)
LUAI_FUNC         214 lib/lua/lundump.c LUAI_FUNC void luaU_header (char* h)
LUAI_FUNC          14 lib/lua/lundump.h LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
LUAI_FUNC          17 lib/lua/lundump.h LUAI_FUNC void luaU_header (char* h);
LUAI_FUNC          20 lib/lua/lundump.h LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
LUAI_FUNC          24 lib/lua/lundump.h LUAI_FUNC void luaU_print (const Proto* f, int full);
LUAI_FUNC          51 lib/lua/lvm.c  LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n) {
LUAI_FUNC          63 lib/lua/lvm.c  LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj) {
LUAI_FUNC         124 lib/lua/lvm.c  LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) {
LUAI_FUNC         150 lib/lua/lvm.c  LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) {
LUAI_FUNC         241 lib/lua/lvm.c  LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) {
LUAI_FUNC         271 lib/lua/lvm.c  LUAI_FUNC int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2) {
LUAI_FUNC         298 lib/lua/lvm.c  LUAI_FUNC void luaV_concat (lua_State *L, int total, int last) {
LUAI_FUNC         393 lib/lua/lvm.c  LUAI_FUNC void luaV_execute (lua_State *L, int nexeccalls) {
LUAI_FUNC          25 lib/lua/lvm.h  LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
LUAI_FUNC          26 lib/lua/lvm.h  LUAI_FUNC int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
LUAI_FUNC          27 lib/lua/lvm.h  LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n);
LUAI_FUNC          28 lib/lua/lvm.h  LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
LUAI_FUNC          29 lib/lua/lvm.h  LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,
LUAI_FUNC          31 lib/lua/lvm.h  LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
LUAI_FUNC          33 lib/lua/lvm.h  LUAI_FUNC void luaV_execute (lua_State *L, int nexeccalls);
LUAI_FUNC          34 lib/lua/lvm.h  LUAI_FUNC void luaV_concat (lua_State *L, int total, int last);
LUAI_FUNC          21 lib/lua/lzio.c LUAI_FUNC int luaZ_fill (ZIO *z) {
LUAI_FUNC          39 lib/lua/lzio.c LUAI_FUNC int luaZ_lookahead (ZIO *z) {
LUAI_FUNC          52 lib/lua/lzio.c LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) {
LUAI_FUNC          63 lib/lua/lzio.c LUAI_FUNC size_t luaZ_read (ZIO *z, void *b, size_t n) {
LUAI_FUNC          79 lib/lua/lzio.c LUAI_FUNC char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n) {
LUAI_FUNC          46 lib/lua/lzio.h LUAI_FUNC char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n);
LUAI_FUNC          47 lib/lua/lzio.h LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader,
LUAI_FUNC          49 lib/lua/lzio.h LUAI_FUNC size_t luaZ_read (ZIO* z, void* b, size_t n);	/* read next n bytes */
LUAI_FUNC          50 lib/lua/lzio.h LUAI_FUNC int luaZ_lookahead (ZIO *z);
LUAI_FUNC          66 lib/lua/lzio.h LUAI_FUNC int luaZ_fill (ZIO *z);