/freebsd/contrib/lua/src/ |
H A D | lmem.h | 17 #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 D | ldblib.c | 35 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 D | lgc.h | 96 #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 D | lobject.h | 42 #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 D | lparser.c | 75 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 D | lvm.h | 85 #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 D | lgc.c | 208 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 D | ldump.c | 24 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()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lmem.h | 23 #define luaM_reallocv(L,b,on,n,e) \ argument 28 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) argument 29 #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0) argument 30 #define luaM_freearray(L, b, n) luaM_reallocv(L, (b), n, 0, sizeof((b)[0])) argument 32 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) argument 33 #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t))) argument 34 #define luaM_newvector(L,n,t) \ argument 37 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) argument 39 #define luaM_growvector(L,v,nelems,size,t,limit,e) \ argument 43 #define luaM_reallocvector(L, v,oldn,n,t) \ argument
|
H A D | lgc.h | 113 #define isdead(g,v) isdeadm(otherwhite(g), (v)->gch.marked) argument 123 #define luaC_condGC(L,c) \ argument 125 #define luaC_checkGC(L) luaC_condGC(L, luaC_step(L);) argument 128 #define luaC_barrier(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \ argument 131 #define luaC_barrierback(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \ argument 134 #define luaC_objbarrier(L,p,o) \ argument 138 #define luaC_objbarrierback(L,p,o) \ argument 141 #define luaC_barrierproto(L,p,c) \ argument
|
H A D | lparser.c | 82 lua_State *L = fs->ls->L; in errorlimit() local 94 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() 192 #define new_localvarliteral(ls,v) \ argument 229 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() 273 int v = searchvar(fs, n); /* look up locals at current level */ in singlevaraux() local 329 lua_State *L = ls->L; in enterlevel() local 498 lua_State *L = ls->L; in addprototype() local 518 static void codeclosure (LexState *ls, expdesc *v) { in codeclosure() 526 lua_State *L = ls->L; in open_func() local 554 lua_State *L = ls->L; in close_func() local [all …]
|
H A D | ltablib.c | 18 #define aux_getn(L,n) (luaL_checktype(L, n, LUA_TTABLE), luaL_len(L, n)) argument 23 static int maxn (lua_State *L) { in maxn() 30 lua_Number v = lua_tonumber(L, -1); in maxn() local 40 static int tinsert (lua_State *L) { in tinsert() 67 static int tremove (lua_State *L) { in tremove() 83 static void addfield (lua_State *L, luaL_Buffer *b, int i) { in addfield() 92 static int tconcat (lua_State *L) { in tconcat() 118 static int pack (lua_State *L) { in pack() 135 static int unpack (lua_State *L) { in unpack() 164 static void set2 (lua_State *L, int i, int j) { in set2() [all …]
|
H A D | lgc.c | 134 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_() 154 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_() 171 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c) { in luaC_barrierproto_() 211 GCObject *luaC_newobj (lua_State *L, int tt, size_t sz, GCObject **list, in luaC_newobj() 662 static void freeobj (lua_State *L, GCObject *o) { in freeobj() 689 #define sweepwholelist(L,p) sweeplist(L,p,MAX_LUMEM) argument 697 static void sweepthread (lua_State *L, lua_State *L1) { in sweepthread() 718 static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count) { in sweeplist() 757 static GCObject **sweeptolive (lua_State *L, GCObject **p, int *n) { in sweeptolive() 777 static void checkSizes (lua_State *L) { in checkSizes() [all …]
|
H A D | ldebug.c | 46 static void swapextra (lua_State *L) { in swapextra() 59 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook() 74 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook() 79 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask() 84 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount() 89 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() 125 static const char *findlocal (lua_State *L, CallInfo *ci, int n, in findlocal() 151 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal() 175 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal() 208 static void collectvalidlines (lua_State *L, Closure *f) { in collectvalidlines() [all …]
|
H A D | lvm.c | 46 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring() 59 static void traceexec (lua_State *L) { in traceexec() 92 static void callTM (lua_State *L, const TValue *f, const TValue *p1, in callTM() 111 void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_gettable() 137 void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { in luaV_settable() 176 static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2, in call_binTM() 187 static const TValue *get_equalTM (lua_State *L, Table *mt1, Table *mt2, in get_equalTM() 201 static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2, in call_orderTM() 232 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessthan() 244 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { in luaV_lessequal() [all …]
|
H A D | lauxlib.c | 37 static int findfield (lua_State *L, int objidx, int level) { in findfield() 61 static int pushglobalfuncname (lua_State *L, lua_Debug *ar) { in pushglobalfuncname() 77 static void pushfuncname (lua_State *L, lua_Debug *ar) { in pushfuncname() 95 static int countlevels (lua_State *L) { in countlevels() 110 LUALIB_API void luaL_traceback (lua_State *L, lua_State *L1, in luaL_traceback() 147 LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) { in luaL_argerror() 165 static int typeerror (lua_State *L, int narg, const char *tname) { in typeerror() 172 static void tag_error (lua_State *L, int narg, int tag) { in tag_error() 177 LUALIB_API void luaL_where (lua_State *L, int level) { in luaL_where() 190 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 D | BasicValueFactory.h | 42 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/lyaml/ext/yaml/ |
H A D | scanner.c | 30 lua_State *L; member 51 scanner_set_mark (lua_State *L, const char *k, yaml_mark_t mark) in scanner_set_mark() 65 scanner_push_tokentable (lyaml_scanner *scanner, const char *v, int n) in scanner_push_tokentable() 67 lua_State *L = scanner->L; in scanner_push_tokentable() local 82 lua_State *L = scanner->L; in scan_STREAM_START() local 108 lua_State *L = scanner->L; in scan_VERSION_DIRECTIVE() local 123 lua_State *L = scanner->L; in scan_TAG_DIRECTIVE() local 135 lua_State *L = scanner->L; in scan_ALIAS() local 146 lua_State *L = scanner->L; in scan_ANCHOR() local 157 lua_State *L = scanner->L; in scan_TAG() local [all …]
|
H A D | parser.c | 29 lua_State *L; member 50 parser_set_mark (lua_State *L, const char *k, yaml_mark_t mark) in parser_set_mark() 64 parser_push_eventtable (lyaml_parser *parser, const char *v, int n) in parser_push_eventtable() 66 lua_State *L = parser->L; in parser_push_eventtable() local 80 lua_State *L = parser->L; in parse_STREAM_START() local 106 parser_append_tag (lua_State *L, yaml_tag_directive_t tag) in parser_append_tag() 120 lua_State *L = parser->L; in parse_DOCUMENT_START() local 162 lua_State *L = parser->L; in parse_DOCUMENT_END() local 173 lua_State *L = parser->L; in parse_ALIAS() local 184 lua_State *L = parser->L; in parse_SCALAR() local [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | CNFFormula.cpp | 51 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 D | InstrRefBasedImpl.h | 90 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 D | strftime.c | 226 # 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 D | ImmutableSet.h | 103 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/usr.sbin/bluetooth/bthidd/ |
H A D | hid.c | 76 #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 D | verify_krb5_conf.c | 90 long v; in check_numeric() local 110 long int v; in check_boolean() local 231 #define L(X) { #X, LOG_ ## X } macro
|