Home
last modified time | relevance | path

Searched +defs:L +defs:v +defs:v (Results 1 – 25 of 60) sorted by relevance

123

/freebsd/contrib/lua/src/
H A Dlmem.h17 #define luaM_error(L) luaD_throw(L, LUA_ERRMEM) argument
34 #define luaM_checksize(L,n,e) \ argument
52 #define luaM_reallocvchar(L,b,on,n) \ argument
55 #define luaM_freemem(L, b, s) luaM_free_(L, (b), (s)) argument
56 #define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b))) argument
57 #define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b))) argument
59 #define luaM_new(L,t) cast(t*, luaM_malloc_(L, sizeof(t), 0)) argument
60 #define luaM_newvector(L,n,t) cast(t*, luaM_malloc_(L, (n)*sizeof(t), 0)) argument
61 #define luaM_newvectorchecked(L,n,t) \ argument
64 #define luaM_newobject(L,tag,s) luaM_malloc_(L, (s), tag) argument
[all …]
H A Dldblib.c35 static void checkstack (lua_State *L, lua_State *L1, int n) { in checkstack()
41 static int db_getregistry (lua_State *L) { in db_getregistry()
47 static int db_getmetatable (lua_State *L) { in db_getmetatable()
56 static int db_setmetatable (lua_State *L) { in db_setmetatable()
65 static int db_getuservalue (lua_State *L) { in db_getuservalue()
77 static int db_setuservalue (lua_State *L) { in db_setuservalue()
94 static lua_State *getthread (lua_State *L, int *arg) { in getthread()
111 static void settabss (lua_State *L, const char *k, const char *v) { in settabss()
116 static void settabsi (lua_State *L, const char *k, int v) { in settabsi()
121 static void settabsb (lua_State *L, const char *k, int v) { in settabsb()
[all …]
H A Dlgc.h96 #define isdead(g,v) isdeadm(otherwhite(g), (v)->marked) argument
136 #define setgcparam(p,v) ((p) = (v) / 4) argument
167 #define luaC_condGC(L,pre,pos) \ argument
172 #define luaC_checkGC(L) luaC_condGC(L,(void)0,(void)0) argument
175 #define luaC_objbarrier(L,p,o) ( \ argument
179 #define luaC_barrier(L,p,v) ( \ argument
182 #define luaC_objbarrierback(L,p,o) ( \ argument
185 #define luaC_barrierback(L,p,v) ( \ argument
H A Dlobject.h42 #define makevariant(t,v) ((t) | ((v) << 4)) argument
106 #define checkliveness(L,obj) \ argument
118 #define setobj(L,obj1,obj2) \ argument
129 #define setobjs2s(L,o1,o2) setobj(L,s2v(o1),s2v(o2)) argument
131 #define setobj2s(L,o1,o2) setobj(L,s2v(o1),o2) argument
193 #define ttisnil(v) checktype((v), LUA_TNIL) argument
203 #define isabstkey(v) checktag((v), LUA_VABSTKEY) argument
209 #define isnonstrictnil(v) (ttisnil(v) && !ttisstrictnil(v)) argument
217 #define isempty(v) ttisnil(v) argument
225 #define setempty(v) settt_(v, LUA_VEMPTY) argument
[all …]
H A Dlparser.c75 lua_State *L = fs->ls->L; in errorlimit() local
87 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit()
194 lua_State *L = ls->L; in new_localvar() local
208 #define new_localvarliteral(ls,v) \ argument
364 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue()
439 int v = searchvar(fs, n, var); /* look up locals at current level */ in singlevaraux() local
700 lua_State *L = ls->L; in addprototype() local
722 static void codeclosure (LexState *ls, expdesc *v) { in codeclosure()
757 lua_State *L = ls->L; in close_func() local
811 static void fieldsel (LexState *ls, expdesc *v) { in fieldsel()
[all …]
H A Dlvm.h85 #define luaV_fastget(L,t,k,slot,f) \ argument
96 #define luaV_fastgeti(L,t,k,slot) \ argument
108 #define luaV_finishfastset(L,t,slot,v) \ argument
H A Dlgc.c208 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_()
230 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_()
243 void luaC_fix (lua_State *L, GCObject *o) { in luaC_fix()
258 GCObject *luaC_newobjdt (lua_State *L, int tt, size_t sz, size_t offset) { in luaC_newobjdt()
270 GCObject *luaC_newobj (lua_State *L, int tt, size_t sz) { in luaC_newobj()
763 static void freeupval (lua_State *L, UpVal *uv) { in freeupval()
770 static void freeobj (lua_State *L, GCObject *o) { in freeobj()
822 static GCObject **sweeplist (lua_State *L, GCObject **p, int countin, in sweeplist()
849 static GCObject **sweeptolive (lua_State *L, GCObject **p) { in sweeptolive()
869 static void checkSizes (lua_State *L, global_State *g) { in checkSizes()
[all …]
H A Dldump.c24 lua_State *L; member
36 #define dumpVector(D,v,n) dumpBlock(D,v,(n)*sizeof((v)[0])) argument
217 int luaU_dump(lua_State *L, const Proto *f, lua_Writer w, void *data, in luaU_dump()
H A Dlvm.c108 TValue v; in luaV_tonumber_() local
157 TValue v; in luaV_tointeger() local
180 static int forlimit (lua_State *L, lua_Integer init, const TValue *lim, in forlimit()
210 static int forprep (lua_State *L, StkId ra) { in forprep()
291 void luaV_finishget (lua_State *L, const TValue *t, TValue *key, StkId val, in luaV_finishget()
334 void luaV_finishset (lua_State *L, const TValue *t, TValue *key, in luaV_finishset()
524 static int lessthanothers (lua_State *L, const TValue *l, const TValue *r) { in lessthanothers()
536 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan()
546 static int lessequalothers (lua_State *L, const TValue *l, const TValue *r) { in lessequalothers()
558 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlmem.h22 #define luaM_reallocv(L,b,on,n,e) \ argument
27 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) argument
28 #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0) argument
29 #define luaM_freearray(L, b, n) luaM_reallocv(L, (b), n, 0, sizeof((b)[0])) argument
31 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) argument
32 #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t))) argument
33 #define luaM_newvector(L,n,t) \ argument
36 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) argument
38 #define luaM_growvector(L,v,nelems,size,t,limit,e) \ argument
42 #define luaM_reallocvector(L, v,oldn,n,t) \ argument
H A Dlgc.h112 #define isdead(g,v) isdeadm(otherwhite(g), (v)->gch.marked) argument
122 #define luaC_condGC(L,c) \ argument
124 #define luaC_checkGC(L) luaC_condGC(L, luaC_step(L);) argument
127 #define luaC_barrier(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \ argument
130 #define luaC_barrierback(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \ argument
133 #define luaC_objbarrier(L,p,o) \ argument
137 #define luaC_objbarrierback(L,p,o) \ argument
140 #define luaC_barrierproto(L,p,c) \ argument
H A Dlparser.c81 lua_State *L = fs->ls->L; in errorlimit() local
93 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit()
191 #define new_localvarliteral(ls,v) \ argument
228 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue()
272 int v = searchvar(fs, n); /* look up locals at current level */ in singlevaraux() local
328 lua_State *L = ls->L; in enterlevel() local
497 lua_State *L = ls->L; in addprototype() local
517 static void codeclosure (LexState *ls, expdesc *v) { in codeclosure()
525 lua_State *L = ls->L; in open_func() local
553 lua_State *L = ls->L; in close_func() local
[all …]
H A Dltablib.c17 #define aux_getn(L,n) (luaL_checktype(L, n, LUA_TTABLE), luaL_len(L, n)) argument
22 static int maxn (lua_State *L) { in maxn()
29 lua_Number v = lua_tonumber(L, -1); in maxn() local
39 static int tinsert (lua_State *L) { in tinsert()
66 static int tremove (lua_State *L) { in tremove()
82 static void addfield (lua_State *L, luaL_Buffer *b, int i) { in addfield()
91 static int tconcat (lua_State *L) { in tconcat()
117 static int pack (lua_State *L) { in pack()
134 static int unpack (lua_State *L) { in unpack()
163 static void set2 (lua_State *L, int i, int j) { in set2()
[all …]
H A Dlgc.c133 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_()
153 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_()
170 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c) { in luaC_barrierproto_()
210 GCObject *luaC_newobj (lua_State *L, int tt, size_t sz, GCObject **list, in luaC_newobj()
661 static void freeobj (lua_State *L, GCObject *o) { in freeobj()
688 #define sweepwholelist(L,p) sweeplist(L,p,MAX_LUMEM) argument
696 static void sweepthread (lua_State *L, lua_State *L1) { in sweepthread()
717 static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count) { in sweeplist()
756 static GCObject **sweeptolive (lua_State *L, GCObject **p, int *n) { in sweeptolive()
776 static void checkSizes (lua_State *L) { in checkSizes()
[all …]
H A Dldebug.c45 static void swapextra (lua_State *L) { in swapextra()
58 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook()
73 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook()
78 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask()
83 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount()
88 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack()
124 static const char *findlocal (lua_State *L, CallInfo *ci, int n, in findlocal()
150 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal()
174 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal()
207 static void collectvalidlines (lua_State *L, Closure *f) { in collectvalidlines()
[all …]
H A Dlvm.c45 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring()
58 static void traceexec (lua_State *L) { in traceexec()
91 static void callTM (lua_State *L, const TValue *f, const TValue *p1, in callTM()
110 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_gettable()
136 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_settable()
175 static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2, in call_binTM()
186 static const TValue *get_equalTM (lua_State *L, Table *mt1, Table *mt2, in get_equalTM()
200 static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2, in call_orderTM()
231 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan()
243 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal()
[all …]
H A Dlauxlib.c36 static int findfield (lua_State *L, int objidx, int level) { in findfield()
60 static int pushglobalfuncname (lua_State *L, lua_Debug *ar) { in pushglobalfuncname()
76 static void pushfuncname (lua_State *L, lua_Debug *ar) { in pushfuncname()
94 static int countlevels (lua_State *L) { in countlevels()
109 LUALIB_API void luaL_traceback (lua_State *L, lua_State *L1, in luaL_traceback()
146 LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) { in luaL_argerror()
164 static int typeerror (lua_State *L, int narg, const char *tname) { in typeerror()
171 static void tag_error (lua_State *L, int narg, int tag) { in tag_error()
176 LUALIB_API void luaL_where (lua_State *L, int level) { in luaL_where()
189 LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) { in luaL_error()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h42 llvm::ImmutableList<SVal> L; variable
88 llvm::ImmutableList<const CXXBaseSpecifier *> L; variable
92 llvm::ImmutableList<const CXXBaseSpecifier *> L) in PointerToMemberData()
194 const llvm::APSInt &getMaxValue(const llvm::APSInt &v) { in getMaxValue()
198 const llvm::APSInt &getMinValue(const llvm::APSInt &v) { in getMinValue()
258 llvm::ImmutableList<SVal> prependSVal(SVal X, llvm::ImmutableList<SVal> L) { in prependSVal()
268 llvm::ImmutableList<const CXXBaseSpecifier *> L) { in prependCXXBase()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DCNFFormula.cpp51 for (auto L : Literals) { in addClause() local
78 const Variable v = var(lit); in addClause() local
106 assert(llvm::all_of(lits, [](Literal L) { return L != NullLit; })); in addClause()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h90 LocIdx(unsigned L) : Location(L) { in LocIdx()
96 LocIdx L = LocIdx(); in MakeTombstoneLoc() local
179 static ValueIDNum fromU64(uint64_t v) { in fromU64()
/freebsd/contrib/diff/lib/
H A Dstrftime.c226 # define TOUPPER(Ch, L) __towupper_l (Ch, L) argument
227 # define TOLOWER(Ch, L) __towlower_l (Ch, L) argument
229 # define TOUPPER(Ch, L) towupper (Ch) argument
230 # define TOLOWER(Ch, L) towlower (Ch) argument
235 # define TOUPPER(Ch, L) __toupper_l (Ch, L) argument
236 # define TOLOWER(Ch, L) __tolower_l (Ch, L) argument
238 # define TOUPPER(Ch, L) toupper (Ch) argument
239 # define TOLOWER(Ch, L) tolower (Ch) argument
242 # define TOUPPER(Ch, L) (islower (Ch) ? toupper (Ch) : (Ch)) argument
243 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h103 if (const ImutAVLTree* L = getLeft()) in size() local
231 ImutAVLTree(Factory *f, ImutAVLTree* l, ImutAVLTree* r, value_type_ref v, in ImutAVLTree()
283 static uint32_t computeDigest(ImutAVLTree *L, ImutAVLTree *R, in computeDigest()
/freebsd/crypto/openssh/
H A Dsntrup761.c127 uint32 v = 0x80000000; in uint32_divmod_uint14() local
403 uint32 v = u; /* 0, else 1...65535 */ in int16_nonzero_mask() local
529 small f[p+1],g[p+1],v[p+1],r[p+1]; in R3_recip() local
614 Fq f[p+1],g[p+1],v[p+1],r[p+1]; in Rq_recip3() local
672 uint32 L[p]; in Short_fromlist() local
715 uint32 L[p]; in Short_random() local
845 static void Expand(uint32 *L,const unsigned char *k) in Expand()
880 uint32 L[p]; in Generator() local
892 uint32 L[p]; in HashShort() local
1058 small f[p],v[p]; in ZKeyGen() local
[all …]
/freebsd/usr.sbin/bluetooth/bthidd/
H A Dhid.c76 #define AMM_VALID_REPORT(L) (((L) >= AMM_BASIC_BLOCK) && \ argument
438 int16_t v; in hid_interrupt() local
/freebsd/crypto/heimdal/lib/krb5/
H A Dverify_krb5_conf.c90 long v; in check_numeric() local
110 long int v; in check_boolean() local
231 #define L(X) { #X, LOG_ ## X } macro

123