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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterCoalescer.h 44 /// True when the original copy was a partial subregister copy.
45 bool Partial = false;
85 bool isPartial() const { return Partial; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
PtrState.cpp 113 // that makes this a partial merge.
114 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size();
116 Partial |= ReverseInsertPts.insert(Inst).second;
117 return Partial;
143 Partial = false;
153 Partial = false;
155 } else if (Partial || Other.Partial) {
156 // If we're doing a merge on a path that's previously seen a partial
157 // merge, conservatively drop the sequence, to avoid doing partial
    [all...]
PtrState.h 94 /// Conservatively merge the two RRInfo. Returns true if a partial merge has
106 /// True if we've seen an opportunity for partial RR elimination, such as
108 bool Partial = false;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ProfileSummary.h 54 /// If 'Partial' is false, it means the profile being used to optimize
56 /// If 'Partial' is true, it means the profile is for common/shared
59 bool Partial = false;
62 /// partial sample profile. When 'Partial' is false, it is undefined. This is
75 bool Partial = false, double PartialProfileRatio = 0)
79 NumCounts(NumCounts), NumFunctions(NumFunctions), Partial(Partial),
95 void setPartialProfile(bool PP) { Partial = PP; }
96 bool isPartialProfile() { return Partial; }
    [all...]
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 24 None, Partial, Sync, Full, Finish, Block
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 24 None, Partial, Sync, Full, Finish, Block
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 24 None, Partial, Sync, Full, Finish, Block
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 24 None, Partial, Sync, Full, Finish, Block
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 24 None, Partial, Sync, Full, Finish, Block
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCVSXSwapRemoval.cpp 172 // Return true iff the given register is a partial vector register.
179 // vector register. Also sets Partial to true if the mention
181 bool isAnyVecReg(unsigned Reg, bool &Partial) {
183 Partial = true;
251 bool Partial = false;
258 // operate on a partial register and produce a full register (such as
260 if (isAnyVecReg(Reg, Partial))
281 // mentions a partial vector register and does not have
283 if (Partial)
599 // for physical regs. We exclude partial-vector register operand
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 447 /// for partial/runtime unrolling (set to UINT_MAX to disable).
450 /// OptSizeThreshold, but used for partial/runtime unrolling (set to
467 /// back to Partial unrolling if full unrolling is above FullUnrollMaxCount.
474 /// Allow partial unrolling (unrolling of loops to expand the size of the
476 bool Partial;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 1808 // class template partial specialization, or class template specialization.
1891 // In a redeclaration, partial specialization, explicit
3218 if (ClassTemplatePartialSpecializationDecl *Partial
3220 ExpectedTemplateParams = Partial->getTemplateParameters();
4175 static void checkMoreSpecializedThanPrimary(Sema &S, PartialSpecDecl *Partial) {
4176 if (Partial->getDeclContext()->isDependentContext())
4181 TemplateDeductionInfo Info(Partial->getLocation());
4182 if (S.isMoreSpecializedThanPrimary(Partial, Info))
4185 auto *Template = Partial->getSpecializedTemplate();
4186 S.Diag(Partial->getLocation()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 2303 SDValue Partial = DAG.getNode(CombineOpc, dl, LoOpVT, Lo, Hi, N->getFlags());
2304 return DAG.getNode(N->getOpcode(), dl, ResVT, Partial, N->getFlags());
2323 SDValue Partial = DAG.getNode(N->getOpcode(), dl, ResVT, AccOp, Lo, Flags);
2326 return DAG.getNode(N->getOpcode(), dl, ResVT, Partial, Hi, Flags);

Completed in 44 milliseconds