Home
last modified time | relevance | path

Searched refs:PD (Results 1 – 25 of 260) sorted by relevance

1234567891011

/external/clang/include/clang/Basic/
DPartialDiagnostic.h259 void swap(PartialDiagnostic &PD) { in swap() argument
260 std::swap(DiagID, PD.DiagID); in swap()
261 std::swap(DiagStorage, PD.DiagStorage); in swap()
262 std::swap(Allocator, PD.Allocator); in swap()
332 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
334 PD.AddTaggedVal(I, DiagnosticsEngine::ak_uint);
335 return PD;
338 friend const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
340 PD.AddTaggedVal(I, DiagnosticsEngine::ak_sint);
341 return PD;
[all …]
/external/arm-optimized-routines/math/
Derf.c20 #define PD __erf_data.erfc_poly_D macro
146 double r1 = fma (a, PD[1], PD[0]); in erf()
147 double r2 = fma (a, PD[3], PD[2]); in erf()
148 double r3 = fma (a, PD[5], PD[4]); in erf()
149 double r4 = fma (a, PD[7], PD[6]); in erf()
150 double r5 = fma (a, PD[9], PD[8]); in erf()
151 double r6 = fma (a, PD[11], PD[10]); in erf()
152 double r7 = fma (a, PD[13], PD[12]); in erf()
153 double r8 = fma (a, PD[15], PD[14]); in erf()
154 double r9 = fma (a, PD[17], PD[16]); in erf()
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp95 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD, in findPropertyBackingIvar() argument
99 ObjCIvarDecl *ID = PD->getPropertyIvarDecl(); in findPropertyBackingIvar()
106 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx)); in findPropertyBackingIvar()
111 IdentifierInfo *PropIdent = PD->getIdentifier(); in findPropertyBackingIvar()
126 for (const auto *PD : InterD->instance_properties()) { in checkASTDecl() local
128 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD, in checkASTDecl()
135 IvarToPropMap[ID] = PD; in checkASTDecl()
179 const ObjCPropertyDecl *PD = I->second; in VisitBinaryOperator() local
184 if (isAnnotatedToAllowDirectAssignment(PD) || in VisitBinaryOperator()
189 InterfD->getInstanceMethod(PD->getGetterName()); in VisitBinaryOperator()
[all …]
DIvarInvalidationChecker.cpp349 const ObjCPropertyDecl *PD = IvarToPopertyMap.lookup(IvarDecl); in printIvar() local
350 assert(PD &&"Do we synthesize ivars for something other than properties?"); in printIvar()
351 os << "Property "<< PD->getName() << " "; in printIvar()
388 const ObjCPropertyDecl *PD = I->second; in visit() local
389 if (PD->isClassProperty()) in visit()
392 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars, in visit()
398 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl()); in visit()
399 PropertyToIvarMap[PD] = ID; in visit()
400 IvarToPopertyMap[ID] = PD; in visit()
403 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl(); in visit()
[all …]
/external/autotest/docs/
Dfaft-pd.md1 # PD FAFT
5 PD FAFT is another set of firmware tests (FAFT), which targets testing USB-C,
6 PD (Power Delivery) functionalities, and ULP (Ultra Low Power) mode.
12 The USB-C and PD stack is complex that involves multiple hardware/firmware:
32 PD FAFT was proposed to uncover any regression on the PD stack in an automated
35 PD FAFT requires hardware to emulate the PD port partner, e.g. a PD-capable
37 a USB-C monitor, etc. The first version of PD FAFT uses
45 The PD FAFT tests are located in the Autotest tree as directories, usually with
50 * Ability to disconnect, then reconnect establishing a successful PD contract
51 * If PD Dual role mode is operational in the DUT
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp503 PathDiagnostic &PD, PathDiagnosticBuilder &PDB, const ExplodedNode *N, in GenerateVisitorsOnlyPathDiagnostic() argument
557 PathDiagnostic &PD, PathDiagnosticBuilder &PDB, const ExplodedNode *N, in GenerateMinimalPathDiagnostic() argument
581 PD.getActivePath().push_front(C); in GenerateMinimalPathDiagnostic()
582 PD.pushActivePath(&C->path); in GenerateMinimalPathDiagnostic()
589 bool VisitedEntireCall = PD.isWithinCall(); in GenerateMinimalPathDiagnostic()
590 PD.popActivePath(); in GenerateMinimalPathDiagnostic()
599 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front()); in GenerateMinimalPathDiagnostic()
602 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller); in GenerateMinimalPathDiagnostic()
644 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
696 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic()
[all …]
DCheckerHelpers.cpp88 } else if (auto PD = dyn_cast_or_null<DeclStmt>(S)) { in parseAssignment() local
90 assert(PD->isSingleDecl() && "We process decls one by one"); in parseAssignment()
91 VD = dyn_cast_or_null<VarDecl>(PD->getSingleDecl()); in parseAssignment()
/external/clang/include/clang/Sema/
DTemplateDeduction.h69 void takeSFINAEDiagnostic(PartialDiagnosticAt &PD) { in takeSFINAEDiagnostic() argument
71 PD.first = SuppressedDiagnostics.front().first; in takeSFINAEDiagnostic()
72 PD.second.swap(SuppressedDiagnostics.front().second); in takeSFINAEDiagnostic()
89 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { in addSFINAEDiagnostic() argument
94 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSFINAEDiagnostic()
100 PartialDiagnostic PD) { in addSuppressedDiagnostic() argument
103 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSuppressedDiagnostic()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
Dp5-cxx0x.cpp22 class PD { class
24 ~PD(); // expected-note 5{{here}}
33 PD pd();
113 DD operator+(PD &a, PD &b);
118 DD operator,(int a, PD b);
/external/autotest/server/site_tests/firmware_PDProtocol/
Dcontrol9 PURPOSE = "Verify PD protocol negotiation."
10 CRITERIA = "This test will fail if PD is negotiated when running from USB image."
21 - That the DUT negotiated PD in dev mode from SSD boot
22 - That the DUT did not negotiate PD when booted from test image from recovery
Dcontrol.ec_wp9 PURPOSE = "Verify PD protocol negotiation."
10 CRITERIA = "This test will fail if PD is negotiated when running from USB image."
21 - That the DUT negotiated PD in dev mode from SSD boot
22 - That the DUT did not negotiate PD when booted from test image from recovery
/external/autotest/server/site_tests/firmware_PDConnect/
Dcontrol.dts9 PURPOSE = "Servo based PD Connect/Disconnect test"
11 CRITERIA = "This test will fail if PD connection is not successful each attempt"
21 - PD Dual role mode is operational in the DUT
22 - Abiility to disconnect, then reconnect establishing a successful PD contract
Dcontrol9 PURPOSE = "Servo based PD Connect/Disconnect test"
11 CRITERIA = "This test will fail if PD connection is not successful each attempt"
22 - PD Dual role mode is operational in the DUT
23 - Abiility to disconnect, then reconnect establishing a successful PD contract
Dcontrol.dts_flip9 PURPOSE = "Servo based PD Connect/Disconnect test"
11 CRITERIA = "This test will fail if PD connection is not successful each attempt"
21 - PD Dual role mode is operational in the DUT
22 - Abiility to disconnect, then reconnect establishing a successful PD contract
Dcontrol.flip9 PURPOSE = "Servo based PD Connect/Disconnect test"
11 CRITERIA = "This test will fail if PD connection is not successful each attempt"
21 - PD Dual role mode is operational in the DUT
22 - Abiility to disconnect, then reconnect establishing a successful PD contract
/external/llvm/lib/Target/X86/
DX86InstrMPX.td46 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
49 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
52 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
56 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
59 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
62 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
/external/autotest/server/site_tests/firmware_Cr50ConsoleCommands/
Dpinmux11 40060048: DIOA4 8 IN PD GPIO0_GPIO7
15 40060068: DIOA8 9 IN PD GPIO0_GPIO8
27 400600c0: DIOB4 (?P<no_ec_comm>0 IN PD)?(?P<ec_comm>3 IN PD GPIO0_GPIO2)?
28 400600c8: DIOB5 0 IN PD
Dpinmux.guc11 40060048: DIOA4 8 IN PD GPIO0_GPIO7
15 40060068: DIOA8 9 IN PD GPIO0_GPIO8
27 400600c0: DIOB4 (?P<no_ec_comm>0 IN PD)?(?P<ec_comm>3 IN PD GPIO0_GPIO2)?
28 400600c8: DIOB5 0 IN PD
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrMPX.td49 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
53 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
56 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
61 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
65 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
68 "bndmov\t{$src, $dst|$dst, $src}", []>, PD,
/external/toybox/tests/
Dman.test23 .PD 0
26 .PD
30 .PD 0
106 .PD 0
178 .PD 0
/external/llvm/lib/Transforms/Instrumentation/
DInstrProfiling.cpp188 PerFunctionProfileData PD; in computeNumValueSiteCounts() local
189 PD.NumValueSites[ValueKind] = Index + 1; in computeNumValueSiteCounts()
190 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts()
331 PerFunctionProfileData PD; in getOrCreateRegionCounters() local
335 PD = It->second; in getOrCreateRegionCounters()
368 NS += PD.NumValueSites[Kind]; in getOrCreateRegionCounters()
400 Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]); in getOrCreateRegionCounters()
414 PD.RegionCounters = CounterPtr; in getOrCreateRegionCounters()
415 PD.DataVar = Data; in getOrCreateRegionCounters()
416 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters()
[all …]
/external/cpuinfo/test/dmesg/
Dgalaxy-a3-2016-eu.log441 <6>[ 2.325212] [0: swapper/0: 1] gpio initial-state: gpa0-0 IN/PD/L
447 <6>[ 2.325270] [0: swapper/0: 1] gpio initial-state: gpa0-6 IN/PD/H
449 <6>[ 2.325289] [0: swapper/0: 1] gpio initial-state: gpa1-0 IN/PD/L
451 <6>[ 2.325308] [0: swapper/0: 1] gpio initial-state: gpa1-2 INT/PD/L
453 <6>[ 2.325327] [0: swapper/0: 1] gpio initial-state: gpa1-4 IN/PD/L
460 <6>[ 2.325394] [0: swapper/0: 1] gpio initial-state: gpa2-3 IN/PD/L
461 <6>[ 2.325403] [0: swapper/0: 1] gpio initial-state: gpa2-4 IN/PD/L
465 <6>[ 2.325441] [0: swapper/0: 1] gpio initial-state: gpa3-0 IN/PD/H
467 <6>[ 2.325460] [0: swapper/0: 1] gpio initial-state: gpa3-2 IN/PD/L
468 <6>[ 2.325470] [0: swapper/0: 1] gpio initial-state: gpa3-3 IN/PD/L
[all …]
/external/clang/lib/ARCMigrate/
DTransGCAttrs.cpp241 ObjCPropertyDecl *PD = *PI; in checkAllAtProps() local
242 Attrs = PD->getPropertyAttributesAsWritten(); in checkAllAtProps()
243 TypeSourceInfo *TInfo = PD->getTypeSourceInfo(); in checkAllAtProps()
249 ATLs.push_back(std::make_pair(ATL, PD)); in checkAllAtProps()
305 ObjCPropertyDecl *PD = AllProps[i]; in checkAllProps() local
306 if (PD->getPropertyAttributesAsWritten() & in checkAllProps()
309 SourceLocation AtLoc = PD->getAtLoc(); in checkAllProps()
313 AtProps[RawAt].push_back(PD); in checkAllProps()
/external/clang/lib/CodeGen/
DCGObjCMac.cpp906 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
994 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
1051 void GenerateProtocol(const ObjCProtocolDecl *PD) override;
1056 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
1062 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
1154 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override;
1160 llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) override;
1167 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1224 const ObjCProtocolDecl *PD) override;
1342 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override;
[all …]
/external/autotest/server/site_tests/firmware_PDVbusRequest/
Dcontrol9 PURPOSE = "Servo based PD VBUS voltage level test"
22 - PD Dual role mode is operational in the DUT.
23 - Ability to initiate new PD contract with various VBUS values.

1234567891011