Home
last modified time | relevance | path

Searched defs:L (Results 51 – 75 of 834) sorted by relevance

12345678910>>...34

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlgc.c153 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_()
776 static void checkSizes (lua_State *L) { in checkSizes()
801 static void dothecall (lua_State *L, void *ud) { in dothecall()
934 static int entersweep (lua_State *L) { in entersweep()
950 void luaC_changemode (lua_State *L, int mode) { in luaC_changemode()
981 void luaC_freeallobjects (lua_State *L) { in luaC_freeallobjects()
997 static l_mem atomic (lua_State *L) { in atomic()
1038 static lu_mem singlestep (lua_State *L) { in singlestep()
1137 static void incstep (lua_State *L) { in incstep()
1161 void luaC_forcestep (lua_State *L) { in luaC_forcestep()
[all …]
H A Dlstring.c62 void luaS_resize (lua_State *L, int newsize) { in luaS_resize()
96 static TString *createstrobj (lua_State *L, const char *str, size_t l, in createstrobj()
116 static TString *newshrstr (lua_State *L, const char *str, size_t l, in newshrstr()
133 static TString *internshrstr (lua_State *L, const char *str, size_t l) { in internshrstr()
156 TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { in luaS_newlstr()
170 TString *luaS_new (lua_State *L, const char *str) { in luaS_new()
175 Udata *luaS_newudata (lua_State *L, size_t s, Table *e) { in luaS_newudata()
H A Dlapi.h14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ argument
17 #define adjustresults(L,nres) \ argument
20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \ argument
H A Dlstrlib.c46 static int str_len (lua_State *L) { in str_len()
62 static int str_sub (lua_State *L) { in str_sub()
76 static int str_reverse (lua_State *L) { in str_reverse()
88 static int str_lower (lua_State *L) { in str_lower()
101 static int str_upper (lua_State *L) { in str_upper()
117 static int str_rep (lua_State *L) { in str_rep()
142 static int str_byte (lua_State *L) { in str_byte()
161 static int str_char (lua_State *L) { in str_char()
184 static int str_dump (lua_State *L) { in str_dump()
213 lua_State *L; member
[all …]
H A Dltable.c143 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
168 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
269 static void setarrayvector (lua_State *L, Table *t, int size) { in setarrayvector()
278 static void setnodevector (lua_State *L, Table *t, int size) { in setnodevector()
303 void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize) { in luaH_resize()
336 void luaH_resizearray (lua_State *L, Table *t, int nasize) { in luaH_resizearray()
342 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
367 Table *luaH_new (lua_State *L) { in luaH_new()
378 void luaH_free (lua_State *L, Table *t) { in luaH_free()
404 TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) { in luaH_newkey()
[all …]
H A Dlzio.c21 lua_State *L = z->L; in luaZ_fill() local
34 void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { in luaZ_init()
66 char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n) { in luaZ_openspace()
H A Dlmem.c44 void *luaM_growaux_ (lua_State *L, void *block, int *size, size_t size_elems, in luaM_growaux_()
64 l_noret luaM_toobig (lua_State *L) { in luaM_toobig()
73 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { in luaM_realloc_()
H A Dlgc.h122 #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
/freebsd/contrib/lua/src/
H A Dlmem.c97 void *luaM_growaux_ (lua_State *L, void *block, int nelems, int *psize, in luaM_growaux_()
128 void *luaM_shrinkvector_ (lua_State *L, void *block, int *size, in luaM_shrinkvector_()
142 l_noret luaM_toobig (lua_State *L) { in luaM_toobig()
150 void luaM_free_ (lua_State *L, void *block, size_t osize) { in luaM_free_()
162 static void *tryagain (lua_State *L, void *block, in tryagain()
176 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { in luaM_realloc_()
192 void *luaM_saferealloc_ (lua_State *L, void *block, size_t osize, in luaM_saferealloc_()
201 void *luaM_malloc_ (lua_State *L, size_t size, int tag) { in luaM_malloc_()
H A Dlstrlib.c55 static int str_len (lua_State *L) { in str_len()
100 static int str_sub (lua_State *L) { in str_sub()
124 static int str_lower (lua_State *L) { in str_lower()
137 static int str_upper (lua_State *L) { in str_upper()
150 static int str_rep (lua_State *L) { in str_rep()
177 static int str_byte (lua_State *L) { in str_byte()
195 static int str_char (lua_State *L) { in str_char()
362 lua_State *L; member
874 lua_State *L = ms->L; in add_s() local
908 lua_State *L = ms->L; in add_value() local
[all …]
H A Dlvm.c622 #define tostring(L,o) \ argument
813 void luaV_finishOp (lua_State *L) { in luaV_finishOp()
887 #define l_addi(L,a,b) intop(+, a, b) argument
904 #define op_arithI(L,iop,fop) { \ argument
933 #define op_arithf(L,fop) { \ argument
943 #define op_arithfK(L,fop) { \ argument
965 #define op_arith(L,iop,fop) { \ argument
974 #define op_arithK(L,iop,fop) { \ argument
983 #define op_bitwiseK(L,op) { \ argument
997 #define op_bitwise(L,op) { \ argument
[all …]
H A Dlapi.h16 #define api_incr_top(L) {L->top.p++; \ argument
26 #define adjustresults(L,nres) \ argument
32 #define api_checknelems(L,n) \ argument
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DProgramPoint.h223 : ProgramPoint(B, BlockEntranceKind, L, tag) { in ProgramPoint() argument
294 : StmtPoint(S, SubStmt, PreStmtKind, L, tag) {} in StmtPoint() argument
311 : StmtPoint(S, data, k, L, tag) {} in StmtPoint() argument
316 : StmtPoint(S, nullptr, k, L, tag) {} in StmtPoint() argument
358 : PostStmt(S, PostConditionKind, L, tag) {} in PostStmt() argument
387 : LocationCheck(S, L, PreLoadKind, tag) {} in LocationCheck() argument
401 : LocationCheck(S, L, PreStoreKind, tag) {} in LocationCheck() argument
415 : PostStmt(S, PostLoadKind, L, tag) {} in PostStmt() argument
433 : PostStmt(S, PostStoreKind, L, tag) { in PostStmt() argument
456 : PostStmt(S, PostLValueKind, L, tag) {} in PostStmt() argument
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLinkage.h80 inline bool isDiscardableGVALinkage(GVALinkage L) { in isDiscardableGVALinkage()
86 inline bool isUniqueGVALinkage(GVALinkage L) { in isUniqueGVALinkage()
90 inline bool isExternallyVisible(Linkage L) { in isExternallyVisible()
106 inline Linkage getFormalLinkage(Linkage L) { in getFormalLinkage()
117 inline bool isExternalFormalLinkage(Linkage L) { in isExternalFormalLinkage()
H A DVisibility.h49 inline Visibility minVisibility(Visibility L, Visibility R) { in minVisibility()
63 LinkageInfo(Linkage L, Visibility V, bool E) in LinkageInfo()
89 void setLinkage(Linkage L) { linkage_ = llvm::to_underlying(L); } in setLinkage()
91 void mergeLinkage(Linkage L) { in mergeLinkage()
98 void mergeExternalVisibility(Linkage L) { in mergeExternalVisibility()
/freebsd/sys/contrib/openzfs/include/sys/lua/
H A Dluaconf.h263 #define lua_cpcall(L,f,u) \ argument
291 #define lua_strlen(L,i) lua_rawlen(L, (i)) argument
293 #define lua_objlen(L,i) lua_rawlen(L, (i)) argument
434 #define luai_nummod(L,a,b) ((a) % (b)) argument
440 #define luai_numadd(L,a,b) ((a)+(b)) argument
441 #define luai_numsub(L,a,b) ((a)-(b)) argument
442 #define luai_nummul(L,a,b) ((a)*(b)) argument
443 #define luai_numdiv(L,a,b) ((a)/(b)) argument
444 #define luai_numunm(L,a) (-(a)) argument
446 #define luai_numlt(L,a,b) ((a)<(b)) argument
[all …]
H A Dlua.h272 #define lua_yield(L,n) lua_yieldk(L, (n), 0, NULL) argument
318 #define lua_tonumber(L,i) lua_tonumberx(L,i,NULL) argument
319 #define lua_tointeger(L,i) lua_tointegerx(L,i,NULL) argument
320 #define lua_tounsigned(L,i) lua_tounsignedx(L,i,NULL) argument
322 #define lua_pop(L,n) lua_settop(L, -(n)-1) argument
324 #define lua_newtable(L) lua_createtable(L, 0, 0) argument
333 #define lua_isnil(L,n) (lua_type(L, (n)) == LUA_TNIL) argument
337 #define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0) argument
339 #define lua_pushliteral(L, s) \ argument
342 #define lua_pushglobaltable(L) \ argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericLoopInfo.h104 const LoopT *L = static_cast<const LoopT *>(this); in getOutermostLoop() local
111 LoopT *L = static_cast<LoopT *>(this); in getOutermostLoop() local
118 void setParentLoop(LoopT *L) { in setParentLoop()
124 bool contains(const LoopT *L) const { in contains()
337 static void getInnerLoopsInPreorder(const LoopT &L, in getInnerLoopsInPreorder()
343 LoopT *L = PreOrderWorklist.pop_back_val(); in getInnerLoopsInPreorder() local
610 const LoopT *L = getLoopFor(BB); in getLoopDepth() local
616 const LoopT *L = getLoopFor(BB); in isLoopHeader() local
631 LoopT *L = *I; in removeLoop() local
640 void changeLoopFor(BlockT *BB, LoopT *L) { in changeLoopFor()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIVUsers.cpp36 IVUsers IVUsersAnalysis::run(Loop &L, LoopAnalysisManager &AM, in run()
56 static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L, in isInteresting()
98 const Loop *L, DominatorTree *DT) { in IVUseShouldUsePostIncValue()
212 auto *L = AR->getLoop(); in AddUsersIfInteresting() local
251 IVUsers::IVUsers(Loop *L, AssumptionCache *AC, LoopInfo *LI, DominatorTree *DT, in IVUsers()
312 bool IVUsersWrapperPass::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop()
341 static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) { in findAddRecForLoop()
367 void IVStrideUse::transformToPostInc(const Loop *L) { in transformToPostInc()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h188 LTy L; member
203 LTy L; member
913 LHS_t L; member
961 LHS_t L; member
1134 LHS_t L; member
1159 m_NSWAdd(const LHS &L, const RHS &R) { in m_NSWAdd()
1244 LHS L; member
1286 LHS_t L; member
1402 LHS_t L; member
1890 LHS_t L; member
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp254 sys::SmartScopedLock<true> L(*TimerLock); in get() local
291 sys::SmartScopedLock<true> L(*TimerLock); in TimerGroup() local
316 sys::SmartScopedLock<true> L(*TimerLock); in ~TimerGroup() local
324 sys::SmartScopedLock<true> L(*TimerLock); in removeTimer() local
347 sys::SmartScopedLock<true> L(*TimerLock); in addTimer() local
429 sys::SmartScopedLock<true> L(*TimerLock); in print() local
439 sys::SmartScopedLock<true> L(*TimerLock); in clear() local
445 sys::SmartScopedLock<true> L(*TimerLock); in printAll() local
452 sys::SmartScopedLock<true> L(*TimerLock); in clearAll() local
469 sys::SmartScopedLock<true> L(*TimerLock); in printJSONValues() local
[all …]
/freebsd/contrib/gdtoa/
H A Darithchk.c48 long L[2]; in Lcheck() member
52 long L; in Lcheck() member
75 int L[2]; in icheck() member
79 int L; in icheck() member
104 long L; in ccheck() member
/freebsd/libexec/flua/modules/
H A Dlfbsd.c44 luaL_checkarraystrings(lua_State *L, int arg) in luaL_checkarraystrings()
66 lua_exec(lua_State *L) in lua_exec()
130 luaopen_fbsd(lua_State *L) in luaopen_fbsd()
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp81 unsigned L = R - 1; in remove_min() local
245 bool tryUnify(const BasicBlock *L, const BasicBlock *R) { in tryUnify()
264 void unify(const Instruction *L, const Instruction *R) { in unify()
301 void diff(const BasicBlock *L, const BasicBlock *R) { in diff()
551 bool equivalentAsOperands(const Constant *L, const Constant *R, in equivalentAsOperands()
709 bool equivalentAsOperands(const Value *L, const Value *R, in equivalentAsOperands()
773 void diff(const Function *L, const Function *R) { in diff()
884 const Instruction *L = &*LI, *R = &*RI; in runBlockDiff() local
953 void DifferenceEngine::diff(const Function *L, const Function *R) { in diff()
971 void DifferenceEngine::diff(const Module *L, const Module *R) { in diff()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPassManager.cpp27 LPMUpdater &>::run(Loop &L, LoopAnalysisManager &AM, in run()
68 LoopPassManager::runWithLoopNestPasses(Loop &L, LoopAnalysisManager &AM, in runWithLoopNestPasses()
151 LoopPassManager::runWithoutLoopNestPasses(Loop &L, LoopAnalysisManager &AM, in runWithoutLoopNestPasses()
275 const Loop *L = LPtr ? *LPtr : nullptr; in run() local
288 Loop *L = Worklist.pop_back_val(); in run() local
370 PreservedAnalyses PrintLoopPass::run(Loop &L, LoopAnalysisManager &, in run()

12345678910>>...34