/netbsd-src/external/mit/lua/dist/src/ |
H A D | lmem.h | 21 #define luaM_error(L) luaD_throw(L, LUA_ERRMEM) argument 38 #define luaM_checksize(L,n,e) \ argument 56 #define luaM_reallocvchar(L,b,on,n) \ argument 59 #define luaM_freemem(L, b, s) luaM_free_(L, (b), (s)) argument 60 #define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b))) argument 61 #define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b))) argument 63 #define luaM_new(L,t) cast(t*, luaM_malloc_(L, sizeof(t), 0)) argument 64 #define luaM_newvector(L,n,t) cast(t*, luaM_malloc_(L, (n)*sizeof(t), 0)) argument 65 #define luaM_newvectorchecked(L,n,t) \ argument 68 #define luaM_newobject(L,tag,s) luaM_malloc_(L, (s), tag) argument [all …]
|
H A D | ldblib.c | 39 static void checkstack (lua_State *L, lua_State *L1, int n) { in checkstack() 45 static int db_getregistry (lua_State *L) { in db_getregistry() 51 static int db_getmetatable (lua_State *L) { in db_getmetatable() 60 static int db_setmetatable (lua_State *L) { in db_setmetatable() 69 static int db_getuservalue (lua_State *L) { in db_getuservalue() 81 static int db_setuservalue (lua_State *L) { in db_setuservalue() 98 static lua_State *getthread (lua_State *L, int *arg) { in getthread() 115 static void settabss (lua_State *L, const char *k, const char *v) { in settabss() 120 static void settabsi (lua_State *L, const char *k, int v) { in settabsi() 125 static void settabsb (lua_State *L, const char *k, int v) { in settabsb() [all …]
|
H A D | lgc.h | 98 #define isdead(g,v) isdeadm(otherwhite(g), (v)->marked) argument 138 #define setgcparam(p,v) ((p) = (v) / 4) argument 169 #define luaC_condGC(L,pre,pos) \ argument 174 #define luaC_checkGC(L) luaC_condGC(L,(void)0,(void)0) argument 177 #define luaC_objbarrier(L,p,o) ( \ argument 181 #define luaC_barrier(L,p,v) ( \ argument 184 #define luaC_objbarrierback(L,p,o) ( \ argument 187 #define luaC_barrierback(L,p,v) ( \ argument
|
H A D | lobject.h | 44 #define makevariant(t,v) ((t) | ((v) << 4)) argument 110 #define checkliveness(L,obj) \ argument 122 #define setobj(L,obj1,obj2) \ argument 133 #define setobjs2s(L,o1,o2) setobj(L,s2v(o1),s2v(o2)) argument 135 #define setobj2s(L,o1,o2) setobj(L,s2v(o1),o2) argument 197 #define ttisnil(v) checktype((v), LUA_TNIL) argument 207 #define isabstkey(v) checktag((v), LUA_VABSTKEY) argument 213 #define isnonstrictnil(v) (ttisnil(v) && !ttisstrictnil(v)) argument 221 #define isempty(v) ttisnil(v) argument 229 #define setempty(v) settt_(v, LUA_VEMPTY) argument [all …]
|
H A D | lvm.h | 91 #define luaV_fastget(L,t,k,slot,f) \ argument 102 #define luaV_fastgeti(L,t,k,slot) \ argument 114 #define luaV_finishfastset(L,t,slot,v) \ argument
|
H A D | lgc.c | 211 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_() 233 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_() 246 void luaC_fix (lua_State *L, GCObject *o) { in luaC_fix() 261 GCObject *luaC_newobjdt (lua_State *L, int tt, size_t sz, size_t offset) { in luaC_newobjdt() 273 GCObject *luaC_newobj (lua_State *L, int tt, size_t sz) { in luaC_newobj() 766 static void freeupval (lua_State *L, UpVal *uv) { in freeupval() 773 static void freeobj (lua_State *L, GCObject *o) { in freeobj() 825 static GCObject **sweeplist (lua_State *L, GCObject **p, int countin, in sweeplist() 852 static GCObject **sweeptolive (lua_State *L, GCObject **p) { in sweeptolive() 872 static void checkSizes (lua_State *L, global_State *g) { in checkSizes() [all …]
|
H A D | ldebug.c | 135 LUA_API void lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook() 149 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook() 154 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask() 159 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount() 164 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() 200 const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n, StkId *pos) { in luaG_findlocal() 224 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal() 246 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal() 294 static void collectvalidlines (lua_State *L, Closure *f) { in collectvalidlines() 301 TValue v; in collectvalidlines() local [all …]
|
H A D | lauxlib.c | 58 static int findfield (lua_State *L, int objidx, int level) { in findfield() 85 static int pushglobalfuncname (lua_State *L, lua_Debug *ar) { in pushglobalfuncname() 106 static void pushfuncname (lua_State *L, lua_Debug *ar) { in pushfuncname() 122 static int lastlevel (lua_State *L) { in lastlevel() 137 LUALIB_API void luaL_traceback (lua_State *L, lua_State *L1, in luaL_traceback() 181 LUALIB_API int luaL_argerror (lua_State *L, int arg, const char *extramsg) { in luaL_argerror() 199 LUALIB_API int luaL_typeerror (lua_State *L, int arg, const char *tname) { in luaL_typeerror() 213 static void tag_error (lua_State *L, int arg, int tag) { in tag_error() 222 LUALIB_API void luaL_where (lua_State *L, int level) { in luaL_where() 240 LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) { in luaL_error() [all …]
|
H A D | lvm.c | 113 TValue v; in luaV_tonumber_() local 168 TValue v; local 192 static int forlimit (lua_State *L, lua_Integer init, const TValue *lim, 223 static int forprep (lua_State *L, StkId ra) { 312 void luaV_finishget (lua_State *L, const TValue *t, TValue *key, StkId val, 355 void luaV_finishset (lua_State *L, const TValue *t, TValue *key, 559 static int lessthanothers (lua_State *L, const TValue *l, const TValue *r) { 571 int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { 586 static int lessequalothers (lua_State *L, const TValue *l, const TValue *r) { 598 int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { [all …]
|
H A D | lparser.c | 79 lua_State *L = fs->ls->L; in errorlimit() local 91 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() 198 lua_State *L = ls->L; in new_localvar() local 212 #define new_localvarliteral(ls,v) \ argument 368 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() 443 int v = searchvar(fs, n, var); /* look up locals at current level */ in singlevaraux() local 704 lua_State *L = ls->L; in addprototype() local 726 static void codeclosure (LexState *ls, expdesc *v) { in codeclosure() 761 lua_State *L = ls->L; in close_func() local 815 static void fieldsel (LexState *ls, expdesc *v) { in fieldsel() [all …]
|
H A D | ldump.c | 28 lua_State *L; member 40 #define dumpVector(D,v,n) dumpBlock(D,v,(n)*sizeof((v)[0])) argument 230 int luaU_dump(lua_State *L, const Proto *f, lua_Writer w, void *data, in luaU_dump()
|
H A D | lstate.h | 106 #define yieldable(L) (((L)->nCcalls & 0xffff0000) == 0) argument 109 #define getCcalls(L) ((L)->nCcalls & 0xffff) argument 113 #define incnny(L) ((L)->nCcalls += 0x10000) argument 116 #define decnny(L) ((L)->nCcalls -= 0x10000) argument 249 #define setoah(st,v) ((st) = ((st) & ~CIST_OAH) | (v)) argument 337 #define G(L) (L->l_G) argument 392 #define obj2gco(v) check_exp((v)->tt >= LUA_TSTRING, &(cast_u(v)->gc)) argument
|
/netbsd-src/lib/lua/libm/ |
H A D | libm.c | 182 libm_nan(lua_State *L) in libm_nan() 193 libm_scalbn(lua_State *L) in libm_scalbn() 205 libm_ilogb(lua_State *L) in libm_ilogb() 221 double v; member 303 luaopen_libm(lua_State *L) in luaopen_libm()
|
/netbsd-src/libexec/httpd/ |
H A D | lua-bozo.c | 55 httpd_instance(lua_State *L) in httpd_instance() 68 lua_flush(lua_State *L) in lua_flush() 77 lua_print(lua_State *L) in lua_print() 86 lua_read(lua_State *L) in lua_read() 108 lua_register_handler(lua_State *L) in lua_register_handler() 136 lua_write(lua_State *L) in lua_write() 155 luaopen_httpd(lua_State *L) in luaopen_httpd() 177 lua_openlib(lua_State *L, const char *name, lua_CFunction fn) in lua_openlib() 242 lua_env(lua_State *L, const char *name, const char *value) in lua_env() 250 lua_url_decode(lua_State *L, char *s) in lua_url_decode() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | BasicValueFactory.h | 43 llvm::ImmutableList<SVal> L; variable 83 llvm::ImmutableList<const CXXBaseSpecifier *> L; variable 87 llvm::ImmutableList<const CXXBaseSpecifier *> L) in PointerToMemberData() 181 const llvm::APSInt &getMaxValue(const llvm::APSInt &v) { in getMaxValue() 185 const llvm::APSInt &getMinValue(const llvm::APSInt &v) { in getMinValue() 253 llvm::ImmutableList<SVal> prependSVal(SVal X, llvm::ImmutableList<SVal> L) { in prependSVal() 263 llvm::ImmutableList<const CXXBaseSpecifier *> L) { in prependCXXBase()
|
/netbsd-src/external/gpl2/xcvs/dist/lib/ |
H A D | strftime.c | 243 # define TOUPPER(Ch, L) __towupper_l (Ch, L) argument 244 # define TOLOWER(Ch, L) __towlower_l (Ch, L) argument 246 # define TOUPPER(Ch, L) towupper (Ch) argument 247 # define TOLOWER(Ch, L) towlower (Ch) argument 252 # define TOUPPER(Ch, L) __toupper_l (Ch, L) argument 253 # define TOLOWER(Ch, L) __tolower_l (Ch, L) argument 255 # define TOUPPER(Ch, L) toupper (Ch) argument 256 # define TOLOWER(Ch, L) tolower (Ch) argument 259 # define TOUPPER(Ch, L) (islower (Ch) ? toupper (Ch) : (Ch)) argument 260 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) argument [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | ImmutableSet.h | 102 if (const ImutAVLTree* L = getLeft()) in size() local 177 if (ImutAVLTree* L = getLeft()) in foreach() local 244 ImutAVLTree(Factory *f, ImutAVLTree* l, ImutAVLTree* r, value_type_ref v, in ImutAVLTree() 296 static uint32_t computeDigest(ImutAVLTree *L, ImutAVLTree *R, in computeDigest()
|
/netbsd-src/external/lgpl3/mpfr/dist/src/ |
H A D | const_euler.c | 92 mpfr_const_euler_bs_t L, R; in mpfr_const_euler_bs_1() local 93 mpz_t t, u, v; in mpfr_const_euler_bs_1() local 187 mpz_t t, u, v; in mpfr_const_euler_internal() local
|
/netbsd-src/sys/arch/arm/s3c2xx0/ |
H A D | s3c24x0_lcd.c | 404 #define L 0x30 /* low intensity */ macro 490 s3c24x0_lcd_show_screen(void *v, void *cookie, int waitok, in s3c24x0_lcd_show_screen() 515 s3c24x0_lcd_alloc_screen(void *v, const struct wsscreen_descr *_type, in s3c24x0_lcd_alloc_screen() 589 s3c24x0_lcd_free_screen(void *v, void *cookie) in s3c24x0_lcd_free_screen() 615 s3c24x0_lcd_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, in s3c24x0_lcd_ioctl() 718 s3c24x0_lcd_mmap(void *v, void *vs, off_t offset, int prot) in s3c24x0_lcd_mmap()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
H A D | FuzzerUtil.cpp | 35 void Print(const Unit &v, const char *PrintAfter) { in Print() 85 size_t L = 0, R = Str.size() - 1; // We are parsing the range [L,R]. in ParseOneDictionaryEntry() local
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
H A D | verify_krb5_conf.c | 92 long v; in check_numeric() local 112 long int v; in check_boolean() local 234 #define L(X) { #X, LOG_ ## X } macro
|
/netbsd-src/sys/arch/arm/xscale/ |
H A D | pxa2x0_lcd.c | 415 #define L 0x1f /* low intensity */ macro 704 pxa2x0_lcd_power(int why, void *v) in pxa2x0_lcd_power() 773 pxa2x0_lcd_show_screen(void *v, void *cookie, int waitok, in pxa2x0_lcd_show_screen() 793 pxa2x0_lcd_alloc_screen(void *v, const struct wsscreen_descr *_type, in pxa2x0_lcd_alloc_screen() 833 pxa2x0_lcd_free_screen(void *v, void *cookie) in pxa2x0_lcd_free_screen() 857 pxa2x0_lcd_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, in pxa2x0_lcd_ioctl() 914 pxa2x0_lcd_mmap(void *v, void *vs, off_t offset, int prot) in pxa2x0_lcd_mmap()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
H A D | HexagonHardwareLoops.cpp | 134 L = 0x04, enumerator 331 explicit CountValue(CountValueType t, unsigned v, unsigned u = 0) { in CountValue() 402 bool HexagonHardwareLoops::findInductionRegister(MachineLoop *L, in findInductionRegister() 566 CountValue *HexagonHardwareLoops::getLoopTripCount(MachineLoop *L, in getLoopTripCount() 1012 bool HexagonHardwareLoops::containsInvalidInstruction(MachineLoop *L, in containsInvalidInstruction() 1124 bool HexagonHardwareLoops::convertToHardwareLoop(MachineLoop *L, in convertToHardwareLoop() 1365 bool HexagonHardwareLoops::isLoopFeeder(MachineLoop *L, MachineBasicBlock *A, in isLoopFeeder() 1387 MachineLoop *L, LoopFeederMap &LoopFeederPhi) const { in phiMayWrapOrUnderflow() 1415 MachineBasicBlock *MBB, MachineLoop *L, in loopCountMayWrapOrUnderFlow() 1605 bool HexagonHardwareLoops::fixupInductionVariable(MachineLoop *L) { in fixupInductionVariable() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.cpp | 244 LocIdx(unsigned L) : Location(L) { in LocIdx() 329 static ValueIDNum fromU64(uint64_t v) { in fromU64() 330 uint64_t L = (v & 0x3FFF); in fromU64() local 565 void setMLoc(LocIdx L, ValueIDNum Num) { in setMLoc() 661 LocIdx getOrTrackSpillLoc(SpillLoc L) { in getOrTrackSpillLoc() 665 unsigned L = getLocID(SpillID, true); in getOrTrackSpillLoc() local 673 unsigned L = getLocID(SpillID, true); in getOrTrackSpillLoc() local 680 void setSpill(SpillLoc L, ValueIDNum ValueID) { in setSpill() 686 Optional<ValueIDNum> readSpill(SpillLoc L) { in readSpill() 698 Optional<LocIdx> getSpillMLoc(SpillLoc L) { in getSpillMLoc() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.cpp | 33 static void or32AArch64Imm(void *L, uint64_t Imm) { in or32AArch64Imm() 41 static void write32AArch64Addr(void *L, uint64_t Imm) { in write32AArch64Addr() 73 static bool classof(const Binary *v) { in classof() 77 static bool classof(const ELFObjectFile<ELFT> *v) { in classof() 142 const LoadedELFObjectInfo &L) { in createRTDyldELFObject() 180 createELFDebugObject(const ObjectFile &Obj, const LoadedELFObjectInfo &L) { in createELFDebugObject()
|