HomeSort by: relevance | last modified time | path
    Searched defs:Closure (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86DomainReassignment.cpp 287 /// A closure is a set of virtual register representing all of the edges in
288 /// the closure, as well as all of the instructions connected by those edges.
290 /// A closure may encompass virtual registers in the same register bank that
294 /// A closure that computes an address (i.e. defines a virtual register that is
297 /// different closure that manipulates the loaded or stored value.
298 class Closure {
300 /// Virtual registers in the closure.
303 /// Instructions in the closure.
306 /// Domains which this closure can legally be reassigned to.
309 /// An ID to uniquely identify this closure, even when it get
    [all...]
  /src/external/mit/isl/dist/doc/
implementation.tex 835 \section{Transitive Closure}
855 \begin{definition}[Transitive Closure of a Relation]
857 then the transitive closure $R^+$ of $R$ is the union
864 Alternatively, the transitive closure may be defined
872 Since the transitive closure of a polyhedral relation
875 of the transitive closure.
880 to be as close as possible to the actual transitive closure
884 For computing an approximation of the transitive closure of $R$,
897 The transitive closure is then
1170 transitive closure
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprCXX.cpp 1088 // a Lambda (i.e. LambdaScopeInfo) AND each LSI's 'closure-type' is lexically
1098 // represent lambdas, while querying the corresponding closure types
1135 [](CXXRecordDecl *Closure, bool &IsByCopy, bool &IsConst) {
1138 for (auto &&C : Closure->captures()) {
1142 if (Closure->getLambdaCallOperator()->isConst())
1152 CXXRecordDecl *Closure = cast<CXXRecordDecl>(CurDC->getParent());
1153 while (Closure &&
1154 IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) {
1161 Closure = isLambdaCallOperator(Closure->getParent()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp 794 // Wrapper implementation using the closure mechanism.
796 auto Closure = InstrProfRecordClosure;
797 Closure.Record = &Record;
798 return getValueProfDataSize(&Closure);
801 // Wrapper implementation using the closure mechanism.
  /src/external/mit/lua/dist/src/
lobject.h 602 #define LUA_VLCL makevariant(LUA_TFUNCTION, 0) /* Lua closure */
604 #define LUA_VCCL makevariant(LUA_TFUNCTION, 2) /* C closure */
675 typedef union Closure {
678 } Closure;

Completed in 75 milliseconds