HomeSort by relevance Sort by last modified time
    Searched refs:Partial (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /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/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterCoalescer.h 44 /// Partial - True when the original copy was a partial subregister copy.
45 bool Partial;
61 Partial(false), CrossClass(false), Flipped(false), NewRC(0) {}
80 bool isPartial() const { return Partial; }
  /external/llvm/lib/Target/Hexagon/
HexagonTargetTransformInfo.cpp 33 UP.Runtime = UP.Partial = true;
  /external/swiftshader/third_party/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 << "%/"
135 case PartialAlias: Partial++; AliasString = "Partial alias"; break;
  /external/clang/test/CodeGenCXX/
cxx1z-fold-expression.cpp 24 template<int ...A> struct Partial {
30 void use(Partial<1, 2> p) {
  /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) {}
  /prebuilts/go/darwin-x86/src/os/user/
lookup_plan9.go 14 // Partial os/user support on Plan 9.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10353.go 8 // Partial call x.foo was not promoted to heap.
31 x() // This statement crashed, because the partial call was allocated on the old stack.
33 // Grow stack so that partial call x becomes invalid if allocated on stack.
  /prebuilts/go/linux-x86/src/os/user/
lookup_plan9.go 14 // Partial os/user support on Plan 9.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10353.go 8 // Partial call x.foo was not promoted to heap.
31 x() // This statement crashed, because the partial call was allocated on the old stack.
33 // Grow stack so that partial call x becomes invalid if allocated on stack.
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 125 // Enable partial unrolling and runtime unrolling, but reduce the
129 UP.Partial = UP.Runtime = true;
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 23 // Partial invalidor annotation allows to addess cases when ivars are
26 // method and all the partial methods cumulatively invalidate all ivars.
178 /// \param LookForPartial is set when we are searching for partial
240 const ObjCContainerDecl *D, InvalidationInfo &OutInfo, bool Partial) {
250 if (isInvalidationMethod(MDI, Partial))
259 containsInvalidationMethod(I->getDefinition(), OutInfo, Partial);
264 containsInvalidationMethod(Ext, OutInfo, Partial);
266 containsInvalidationMethod(InterfD->getSuperClass(), OutInfo, Partial);
273 containsInvalidationMethod(I->getDefinition(), OutInfo, Partial);
420 // Find all partial invalidation methods
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 36 /// matching class template partial specializations).
756 /// deduction for during partial ordering for a call
757 /// (C++0x [temp.deduct.partial]).
    [all...]
SemaTemplateInstantiate.cpp 83 if (VarTemplatePartialSpecializationDecl *Partial =
85 if (Partial->isMemberSpecialization())
    [all...]
  /external/libbrillo/brillo/http/
http_request_unittest.cc 165 .WillOnce(Return(status_code::Partial));
166 EXPECT_EQ(status_code::Partial, resp->GetStatusCode());
169 .WillOnce(Return("Partial completion"));
170 EXPECT_EQ("Partial completion", resp->GetStatusText());
http_request.h 128 // Partial completion
129 static const int Partial = 203;
134 // Partial GET fulfilled
252 // Makes a request for a subrange of data. Specifies a partial range with
323 // List of optional data ranges to request partial content from the server.
  /external/v8/tools/turbolizer/
util.js 73 // Partial application without binding the receiver
74 function partial(f) { function
  /external/webrtc/webrtc/common_audio/signal_processing/
filter_ar_fast_q12_armv7.S 31 @ r7: Partial sum of a filtering multiplication results
32 @ r8: Partial sum of a filtering multiplication results
  /external/llvm/lib/Target/PowerPC/
PPCVSXSwapRemoval.cpp 176 // Return true iff the given register is a partial vector register.
183 // vector register. Also sets Partial to true if the mention
185 bool isAnyVecReg(unsigned Reg, bool &Partial) {
187 Partial = true;
253 bool Partial = false;
259 if (isAnyVecReg(Reg, Partial)) {
282 // mentions a partial vector register and does not have
284 if (Partial)
595 // for physical regs. We exclude partial-vector register operands
644 // Reject webs containing mentions of physical or partial registers, o
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 71 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
80 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
125 UP.Partial = false;
155 UP.Partial = UnrollAllowPartial;
169 UP.Partial = *UserAllowPartial;
778 // 4rd priority is partial unrolling.
779 // Try partial unroll only when TripCount could be staticaly calculated.
783 UP.Partial |= ExplicitUnroll;
784 if (!UP.Partial) {
786 << "-unroll-allow-partial not given\n")
    [all...]
  /prebuilts/go/darwin-x86/src/math/
tan.go 39 // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9. The loss
  /prebuilts/go/darwin-x86/src/net/http/
status.go 87 StatusPartialContent: "Partial Content",
  /prebuilts/go/linux-x86/src/math/
tan.go 39 // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9. The loss
  /prebuilts/go/linux-x86/src/net/http/
status.go 87 StatusPartialContent: "Partial Content",

Completed in 2412 milliseconds

1 2 3 4