| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86DomainReassignment.cpp | 290 class Closure { class 306 Closure(unsigned ID, std::initializer_list<RegDomain> LegalDstDomainList) : ID(ID) { in Closure() function in __anond9661d290111::Closure 398 void buildClosure(Closure &, Register Reg); 402 bool visitRegister(Closure &, Register Reg, RegDomain &Domain, 406 void reassign(const Closure &C, RegDomain Domain) const; 410 bool encloseInstr(Closure &C, MachineInstr *MI); 413 bool isReassignmentProfitable(const Closure &C, RegDomain Domain) const; 416 double calculateCost(const Closure &C, RegDomain Domain) const; 423 bool X86DomainReassignment::visitRegister(Closure &C, Register Reg, in visitRegister() 453 bool X86DomainReassignment::encloseInstr(Closure &C, MachineInstr *MI) { in encloseInstr() [all …]
|
| /freebsd/sys/contrib/openzfs/module/lua/ |
| H A D | lfunc.h | 23 LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems); 24 LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems);
|
| H A D | lfunc.c | 22 Closure *luaF_newCclosure (lua_State *L, int n) { in luaF_newCclosure() 23 Closure *c = &luaC_newobj(L, LUA_TCCL, sizeCclosure(n), NULL, 0)->cl; in luaF_newCclosure() 29 Closure *luaF_newLclosure (lua_State *L, int n) { in luaF_newLclosure() 30 Closure *c = &luaC_newobj(L, LUA_TLCL, sizeLclosure(n), NULL, 0)->cl; in luaF_newLclosure()
|
| H A D | ldebug.c | 190 static void funcinfo (lua_Debug *ar, Closure *cl) { in funcinfo() 208 static void collectvalidlines (lua_State *L, Closure *f) { in collectvalidlines() 228 Closure *f, CallInfo *ci) { in auxgetinfo() 280 Closure *cl; in lua_getinfo()
|
| H A D | lparser.h | 116 LUAI_FUNC Closure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
|
| H A D | lobject.h | 476 union Closure *cache; /* last created closure with this prototype */ 531 typedef union Closure { union 534 } Closure; typedef
|
| H A D | lgc.h | 153 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c);
|
| H A D | lstate.h | 191 union Closure cl;
|
| H A D | lvm.c | 440 static Closure *getcached (Proto *p, UpVal **encup, StkId base) { in getcached() 441 Closure *c = p->cache; in getcached() 467 Closure *ncl = luaF_newLclosure(L, nup); in pushclosure() 899 Closure *ncl = getcached(p, cl->upvals, base); /* cached closure */ in luaV_execute()
|
| H A D | lparser.c | 1623 Closure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, in luaY_parser() 1627 Closure *cl = luaF_newLclosure(L, 1); /* create main closure */ in luaY_parser()
|
| H A D | ldo.c | 731 Closure *cl; in f_parser()
|
| H A D | lgc.c | 171 LUAI_FUNC void luaC_barrierproto_ (lua_State *L, Proto *p, Closure *c) { in luaC_barrierproto_()
|
| H A D | lapi.c | 560 Closure *cl; in lua_pushcclosure()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfData.inc | 616 /* Closure based interfaces. */ 623 getValueProfDataSize(ValueProfRecordClosure *Closure) { 626 const void *Record = Closure->Record; 629 uint32_t NumValueSites = Closure->GetNumValueSites(Record, Kind); 633 Closure->GetNumValueData(Record, Kind)); 640 * from the \c Closure and serialize the data into \c This record instance. 644 ValueProfRecordClosure *Closure, 647 const void *Record = Closure->Record; 653 uint32_t ND = Closure->GetNumValueDataForSite(Record, ValueKind, S); 655 Closure->GetValueForSite(Record, DstVD, ValueKind, S); [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/include/profile/ |
| H A D | InstrProfData.inc | 616 /* Closure based interfaces. */ 623 getValueProfDataSize(ValueProfRecordClosure *Closure) { 626 const void *Record = Closure->Record; 629 uint32_t NumValueSites = Closure->GetNumValueSites(Record, Kind); 633 Closure->GetNumValueData(Record, Kind)); 640 * from the \c Closure and serialize the data into \c This record instance. 644 ValueProfRecordClosure *Closure, 647 const void *Record = Closure->Record; 653 uint32_t ND = Closure->GetNumValueDataForSite(Record, ValueKind, S); 655 Closure->GetValueForSite(Record, DstVD, ValueKind, S); [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ExpandImm.cpp | 260 uint64_t Closure = Result | llvm::rotl<uint64_t>(Result, Rotation); in MaximallyReplicateSubImmediate() local 261 if (Closure != (Closure & V)) { in MaximallyReplicateSubImmediate() 264 Result = Closure; in MaximallyReplicateSubImmediate()
|
| /freebsd/contrib/lua/src/ |
| H A D | ldebug.c | 259 static void funcinfo (lua_Debug *ar, Closure *cl) { in funcinfo() 293 static void collectvalidlines (lua_State *L, Closure *f) { in collectvalidlines() 333 Closure *f, CallInfo *ci) { in auxgetinfo() 390 Closure *cl; in lua_getinfo()
|
| H A D | lstate.h | 357 union Closure cl;
|
| H A D | lobject.h | 661 typedef union Closure { union 664 } Closure; typedef
|
| /freebsd/contrib/googletest/docs/reference/ |
| H A D | actions.md | 72 Closure* done2 = new BlockingClosure;
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 1181 auto Closure = InstrProfRecordClosure; in getSize() local 1182 Closure.Record = &Record; in getSize() 1183 return getValueProfDataSize(&Closure); in getSize()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprCXX.cpp | 1172 [](CXXRecordDecl *Closure, bool &IsByCopy, bool &IsConst) { in adjustCVQualifiersForCXXThisWithinLambda() argument 1175 for (auto &&C : Closure->captures()) { in adjustCVQualifiersForCXXThisWithinLambda() 1179 if (Closure->getLambdaCallOperator()->isConst()) in adjustCVQualifiersForCXXThisWithinLambda() 1189 CXXRecordDecl *Closure = cast<CXXRecordDecl>(CurDC->getParent()); in adjustCVQualifiersForCXXThisWithinLambda() local 1190 while (Closure && in adjustCVQualifiersForCXXThisWithinLambda() 1191 IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) { in adjustCVQualifiersForCXXThisWithinLambda() 1197 Closure = isLambdaCallOperator(Closure->getParent()) in adjustCVQualifiersForCXXThisWithinLambda() 1198 ? cast<CXXRecordDecl>(Closure->getParent()->getParent()) in adjustCVQualifiersForCXXThisWithinLambda()
|
| /freebsd/contrib/googletest/docs/ |
| H A D | gmock_cook_book.md | 2244 ... Invoke(implicit_cast<Closure*>(done)) ...; // The cast is necessary. 2330 ... InvokeWithoutArgs(implicit_cast<Closure*>(done)) ...;
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | funstack.ok | 2111 for the Transitive Closure of Binary
|
| H A D | funstack.in | 15941 …title = "A Modification of {Warshall}'s Algorithm for the Transitive Closure of Binary Rela…
|