Searched refs:LUAI_FUNC (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlfunc.h21 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
22 LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems);
23 LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems);
24 LUAI_FUNC UpVal *luaF_newupval (lua_State *L);
25 LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
26 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
27 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
28 LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv);
29 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
H A Dlcode.h47 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
48 LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
49 LUAI_FUNC int luaK_codek (FuncState *fs, int reg, int k);
50 LUAI_FUNC void luaK_fixline (FuncState *fs, int line);
51 LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n);
52 LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n);
53 LUAI_FUNC void luaK_checkstack (FuncState *fs, int n);
54 LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s);
55 LUAI_FUNC int luaK_numberK (FuncState *fs, lua_Number r);
56 LUAI_FUNC voi
[all...]
H A Dlvm.h26 LUAI_FUNC int luaV_equalobj_ (lua_State *L, const TValue *t1, const TValue *t2);
29 LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
30 LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
31 LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n);
32 LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
33 LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,
35 LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
37 LUAI_FUNC void luaV_finishOp (lua_State *L);
38 LUAI_FUNC void luaV_execute (lua_State *L);
39 LUAI_FUNC voi
[all...]
H A Dlundump.h14 LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
17 LUAI_FUNC void luaU_header (lu_byte* h);
20 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
H A Dldo.h29 LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
31 LUAI_FUNC void luaD_hook (lua_State *L, int event, int line);
32 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
33 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
35 LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
37 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
38 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
39 LUAI_FUNC void luaD_growstack (lua_State *L, int n);
40 LUAI_FUNC void luaD_shrinkstack (lua_State *L);
42 LUAI_FUNC l_nore
[all...]
H A Dltable.h25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
26 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value);
27 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
28 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
29 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
30 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
31 LUAI_FUNC Table *luaH_new (lua_State *L);
32 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize);
33 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
34 LUAI_FUNC voi
[all...]
H A Dldebug.h24 LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o,
26 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);
27 LUAI_FUNC l_noret luaG_aritherror (lua_State *L, const TValue *p1,
29 LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
31 LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
32 LUAI_FUNC l_noret luaG_errormsg (lua_State *L);
H A Dllex.h68 LUAI_FUNC void luaX_init (lua_State *L);
69 LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
71 LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
72 LUAI_FUNC void luaX_next (LexState *ls);
73 LUAI_FUNC int luaX_lookahead (LexState *ls);
74 LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
75 LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
H A Dlstring.h37 LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l, unsigned int seed);
38 LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b);
39 LUAI_FUNC int luaS_eqstr (TString *a, TString *b);
40 LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
41 LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, Table *e);
42 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
43 LUAI_FUNC TString *luaS_new (lua_State *L, const char *str);
H A Dlzio.h45 LUAI_FUNC char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n);
46 LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader,
48 LUAI_FUNC size_t luaZ_read (ZIO* z, void* b, size_t n); /* read next n bytes */
63 LUAI_FUNC int luaZ_fill (ZIO *z);
H A Dlgc.h143 LUAI_FUNC void luaC_freeallobjects (lua_State *L);
144 LUAI_FUNC void luaC_step (lua_State *L);
145 LUAI_FUNC void luaC_forcestep (lua_State *L);
146 LUAI_FUNC void luaC_runtilstate (lua_State *L, int statesmask);
147 LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency);
148 LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz,
150 LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v);
151 LUAI_FUNC void luaC_barrierback_ (lua_State *L, GCObject *o);
152 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c);
153 LUAI_FUNC voi
[all...]
H A Dltm.h52 LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
53 LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
55 LUAI_FUNC void luaT_init (lua_State *L);
H A Dlmem.h47 LUAI_FUNC l_noret luaM_toobig (lua_State *L);
50 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
52 LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size,
/freebsd-11-stable/contrib/lua/src/
H A Dlcode.h52 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
53 LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
54 LUAI_FUNC int luaK_codek (FuncState *fs, int reg, int k);
55 LUAI_FUNC void luaK_fixline (FuncState *fs, int line);
56 LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n);
57 LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n);
58 LUAI_FUNC void luaK_checkstack (FuncState *fs, int n);
59 LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s);
60 LUAI_FUNC int luaK_intK (FuncState *fs, lua_Integer n);
61 LUAI_FUNC voi
[all...]
H A Dltable.h43 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
44 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, lua_Integer key,
46 LUAI_FUNC const TValue *luaH_getshortstr (Table *t, TString *key);
47 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
48 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
49 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
50 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
51 LUAI_FUNC Table *luaH_new (lua_State *L);
52 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned int nasize,
54 LUAI_FUNC voi
[all...]
H A Dlstring.h36 LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l, unsigned int seed);
37 LUAI_FUNC unsigned int luaS_hashlongstr (TString *ts);
38 LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b);
39 LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
40 LUAI_FUNC void luaS_clearcache (global_State *g);
41 LUAI_FUNC void luaS_init (lua_State *L);
42 LUAI_FUNC void luaS_remove (lua_State *L, TString *ts);
43 LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s);
44 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
45 LUAI_FUNC TStrin
[all...]
H A Dldo.h39 LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
41 LUAI_FUNC void luaD_hook (lua_State *L, int event, int line);
42 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
43 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
44 LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
45 LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
47 LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult,
49 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
50 LUAI_FUNC void luaD_growstack (lua_State *L, int n);
51 LUAI_FUNC voi
[all...]
H A Dldebug.h21 LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o,
23 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, const TValue *p1,
25 LUAI_FUNC l_noret luaG_opinterror (lua_State *L, const TValue *p1,
28 LUAI_FUNC l_noret luaG_tointerror (lua_State *L, const TValue *p1,
30 LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
32 LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
33 LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg,
35 LUAI_FUNC l_noret luaG_errormsg (lua_State *L);
36 LUAI_FUNC void luaG_traceexec (lua_State *L);
H A Dlfunc.h50 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
51 LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems);
52 LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems);
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_close (lua_State *L, StkId level);
56 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
57 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
H A Dllex.h75 LUAI_FUNC void luaX_init (lua_State *L);
76 LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
78 LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
79 LUAI_FUNC void luaX_next (LexState *ls);
80 LUAI_FUNC int luaX_lookahead (LexState *ls);
81 LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
82 LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
H A Dltm.h58 LUAI_FUNC const char *luaT_objtypename (lua_State *L, const TValue *o);
60 LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
61 LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
63 LUAI_FUNC void luaT_init (lua_State *L);
65 LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
67 LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2,
69 LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
71 LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
H A Dlundump.h26 LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
29 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
H A Dlvm.h96 LUAI_FUNC int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2);
97 LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
98 LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
99 LUAI_FUNC int luaV_tonumber_ (const TValue *obj, lua_Number *n);
100 LUAI_FUNC int luaV_tointeger (const TValue *obj, lua_Integer *p, int mode);
101 LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key,
103 LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
105 LUAI_FUNC void luaV_finishOp (lua_State *L);
106 LUAI_FUNC void luaV_execute (lua_State *L);
107 LUAI_FUNC voi
[all...]
H A Dlgc.h134 LUAI_FUNC void luaC_fix (lua_State *L, GCObject *o);
135 LUAI_FUNC void luaC_freeallobjects (lua_State *L);
136 LUAI_FUNC void luaC_step (lua_State *L);
137 LUAI_FUNC void luaC_runtilstate (lua_State *L, int statesmask);
138 LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency);
139 LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz);
140 LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v);
141 LUAI_FUNC void luaC_barrierback_ (lua_State *L, Table *o);
142 LUAI_FUNC void luaC_upvalbarrier_ (lua_State *L, UpVal *uv);
143 LUAI_FUNC voi
[all...]
H 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);

Completed in 118 milliseconds

12