HomeSort by relevance Sort by last modified time
    Searched defs:Partial (Results 1 - 9 of 9) sorted by null

  /external/clang/test/CodeGenCXX/
cxx1z-fold-expression.cpp 24 template<int ...A> struct Partial {
30 void use(Partial<1, 2> p) {
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 32 unsigned No, May, Partial, Must;
39 No = May = Partial = Must = 0;
48 unsigned AASum = No+May+Partial+Must;
57 printLine("partial alias", Partial, AASum);
61 << Partial*100/AASum << "%/"
134 case PartialAlias: Partial++; AliasString = "Partial alias"; break;
  /external/llvm/lib/CodeGen/
RegisterCoalescer.h 44 /// True when the original copy was a partial subregister copy.
45 bool Partial;
62 Partial(false), CrossClass(false), Flipped(false), NewRC(nullptr) {}
69 Partial(false), CrossClass(false), Flipped(false), NewRC(nullptr) {}
88 bool isPartial() const { return Partial; }
  /external/llvm/lib/Transforms/ObjCARC/
PtrState.cpp 105 // that makes this a partial merge.
106 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size();
108 Partial |= ReverseInsertPts.insert(Inst).second;
109 return Partial;
134 Partial = false;
144 Partial = false;
146 } else if (Partial || Other.Partial) {
147 // If we're doing a merge on a path that's previously seen a partial
148 // merge, conservatively drop the sequence, to avoid doing partial
    [all...]
PtrState.h 93 /// Conservatively merge the two RRInfo. Returns true if a partial merge has
105 /// True if we've seen an opportunity for partial RR elimination, such as
107 bool Partial;
115 PtrState() : KnownPositiveRefCount(false), Partial(false), Seq(S_None) {}
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 241 /// for partial/runtime unrolling (set to UINT_MAX to disable).
244 /// OptSizeThreshold, but used for partial/runtime unrolling (set to
257 /// Allow partial unrolling (unrolling of loops to expand the size of the
259 bool Partial;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 66 UnrollAllowPartial("unroll-allow-partial", cl::init(false), cl::Hidden,
166 UP.Partial = CurrentAllowPartial;
799 enum { Full = 0, Partial = 1, Runtime = 2 };
806 Unrolling = Partial;
811 Unrolling = Partial;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 82 if (VarTemplatePartialSpecializationDecl *Partial =
84 if (Partial->isMemberSpecialization())
    [all...]
SemaTemplate.cpp     [all...]

Completed in 486 milliseconds