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

  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.h 63 // 2) Partially aligned: There is a partial intersection between the rects, either
93 Partial,
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 31 unsigned No, May, Partial, Must;
38 No = May = Partial = Must = 0;
47 unsigned AASum = No+May+Partial+Must;
56 printLine("partial alias", Partial, AASum);
60 << Partial*100/AASum << "%/"
133 case PartialAlias: Partial++; AliasString = "Partial alias"; break;
  /external/llvm/lib/CodeGen/
RegisterCoalescer.h 46 /// Partial - True when the original copy was a partial subregister copy.
47 bool Partial;
64 Partial(false), CrossClass(false), Flipped(false), NewRC(nullptr) {}
71 Partial(false), CrossClass(false), Flipped(false), NewRC(nullptr) {}
90 bool isPartial() const { return Partial; }
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 202 /// for partial/runtime unrolling (set to UINT_MAX to disable).
205 /// OptSizeThreshold, but used for partial/runtime unrolling (set to UINT_MAX
218 /// Allow partial unrolling (unrolling of loops to expand the size of the
220 bool Partial;
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 45 UnrollAllowPartial("unroll-allow-partial", cl::init(false), cl::Hidden,
131 UP.Partial = CurrentAllowPartial;
380 enum { Full = 0, Partial = 1, Runtime = 2 };
387 Unrolling = Partial;
392 Unrolling = Partial;
400 if (Unrolling == Partial) {
401 bool AllowPartial = UserAllowPartial ? CurrentAllowPartial : UP.Partial;
404 << "-unroll-allow-partial not given\n");
408 // Reduce unroll count to be modulo of TripCount for partial unrolling.
457 // Partial unrolling by 1 is a nop. For full unrolling, a facto
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 82 if (VarTemplatePartialSpecializationDecl *Partial =
84 if (Partial->isMemberSpecialization())
    [all...]
SemaTemplate.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 382 /// Conservatively merge the two RRInfo. Returns true if a partial merge has
412 // that makes this a partial merge.
413 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size();
417 Partial |= ReverseInsertPts.insert(*I);
418 return Partial;
428 /// True if we've seen an opportunity for partial RR elimination, such as
430 bool Partial;
439 PtrState() : KnownPositiveRefCount(false), Partial(false),
509 Partial = false;
544 Partial = false
    [all...]

Completed in 345 milliseconds