Home
last modified time | relevance | path

Searched refs:ER (Results 1 – 25 of 420) sorted by relevance

12345678910>>...17

/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPIChecker.cpp34 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR); in checkDoubleNonblocking() local
37 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion()))) in checkDoubleNonblocking()
63 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR); in checkUnmatchedWaits() local
66 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion()))) in checkUnmatchedWaits()
154 if (const ElementRegion *const ER = MR->getAs<ElementRegion>()) { in allRegionsUsedByWait() local
155 SuperRegion = ER->getSuperRegion(); in allRegionsUsedByWait()
172 const ElementRegion *const ER = RegionManager->getElementRegion( in allRegionsUsedByWait() local
176 ReqRegions.push_back(ER->getAs<MemRegion>()); in allRegionsUsedByWait()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPIChecker.cpp34 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR); in checkDoubleNonblocking() local
37 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion()))) in checkDoubleNonblocking()
64 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR); in checkUnmatchedWaits() local
67 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion()))) in checkUnmatchedWaits()
154 if (const ElementRegion *const ER = MR->getAs<ElementRegion>()) { in allRegionsUsedByWait() local
155 SuperRegion = cast<SubRegion>(ER->getSuperRegion()); in allRegionsUsedByWait()
173 const ElementRegion *const ER = RegionManager.getElementRegion( in allRegionsUsedByWait() local
177 ReqRegions.push_back(ER->getAs<MemRegion>()); in allRegionsUsedByWait()
/external/llvm-project/llvm/unittests/Analysis/
DTFUtilsTest.cpp57 auto ER = Evaluator.evaluate(); in TEST() local
58 EXPECT_TRUE(ER.hasValue()); in TEST()
59 float Ret = *ER->getTensorValue<float>(0); in TEST()
61 EXPECT_EQ(ER->getUntypedTensorValue(0), in TEST()
62 reinterpret_cast<const void *>(ER->getTensorValue<float>(0))); in TEST()
72 auto ER = Evaluator.evaluate(); in TEST() local
73 EXPECT_TRUE(ER.hasValue()); in TEST()
74 float Ret = *ER->getTensorValue<float>(0); in TEST()
97 auto ER = Evaluator.evaluate(); in TEST() local
98 EXPECT_FALSE(ER.hasValue()); in TEST()
/external/clang/lib/CodeGen/
DCGValue.h86 RValue ER; in get() local
87 ER.V1.setPointer(V); in get()
88 ER.V1.setInt(Scalar); in get()
89 ER.V2.setInt(false); in get()
90 return ER; in get()
93 RValue ER; in getComplex() local
94 ER.V1.setPointer(V1); in getComplex()
95 ER.V2.setPointer(V2); in getComplex()
96 ER.V1.setInt(Complex); in getComplex()
97 ER.V2.setInt(false); in getComplex()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DArrayBoundChecker.cpp43 const ElementRegion *ER = dyn_cast<ElementRegion>(R); in checkLocation() local
44 if (!ER) in checkLocation()
48 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in checkLocation()
59 = C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(), in checkLocation()
60 ER->getValueType()); in checkLocation()
DReturnPointerRangeChecker.cpp46 const ElementRegion *ER = dyn_cast_or_null<ElementRegion>(R); in checkPreStmt() local
47 if (!ER) in checkPreStmt()
50 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in checkPreStmt()
59 = C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(), in checkPreStmt()
60 ER->getValueType()); in checkPreStmt()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DReturnPointerRangeChecker.cpp46 const ElementRegion *ER = dyn_cast_or_null<ElementRegion>(R); in checkPreStmt() local
47 if (!ER) in checkPreStmt()
50 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in checkPreStmt()
59 state, ER->getSuperRegion(), C.getSValBuilder(), ER->getValueType()); in checkPreStmt()
DArrayBoundChecker.cpp43 const ElementRegion *ER = dyn_cast<ElementRegion>(R); in checkLocation() local
44 if (!ER) in checkLocation()
48 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in checkLocation()
59 state, ER->getSuperRegion(), C.getSValBuilder(), ER->getValueType()); in checkLocation()
DUndefResultChecker.cpp49 const ElementRegion *ER = dyn_cast<ElementRegion>(MR); in isArrayIndexOutOfBounds() local
50 if (!ER) in isArrayIndexOutOfBounds()
53 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in isArrayIndexOutOfBounds()
55 state, ER->getSuperRegion(), C.getSValBuilder(), ER->getValueType()); in isArrayIndexOutOfBounds()
DTaint.cpp165 if (const ElementRegion *ER = dyn_cast<ElementRegion>(Reg)) in isTainted() local
166 return isTainted(State, ER->getSuperRegion(), K) || in isTainted()
167 isTainted(State, ER->getIndex(), K); in isTainted()
172 if (const SubRegion *ER = dyn_cast<SubRegion>(Reg)) in isTainted() local
173 return isTainted(State, ER->getSuperRegion(), K); in isTainted()
/external/llvm-project/clang/lib/CodeGen/
DCGValue.h87 RValue ER; in get() local
88 ER.V1.setPointer(V); in get()
89 ER.V1.setInt(Scalar); in get()
90 ER.V2.setInt(false); in get()
91 return ER; in get()
94 RValue ER; in getComplex() local
95 ER.V1.setPointer(V1); in getComplex()
96 ER.V2.setPointer(V2); in getComplex()
97 ER.V1.setInt(Complex); in getComplex()
98 ER.V2.setInt(false); in getComplex()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-WPS64 If you want to enable WPS external registrar (ER) functionality, you
228 wpa_supplicant as WPS External Registrar (ER)
231 wpa_supplicant can be used as a WPS ER to configure an AP or enroll
236 Separate wpa_supplicant process can be started for WPS ER
239 example, following command could be used to start the ER:
249 wpa_cli commands for ER functionality:
252 - start WPS ER functionality
255 - if run again while ER is active, the stored information (discovered APs
259 - stop WPS ER functionality
289 WPS ER events:
[all …]
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonConstExtenders.cpp350 bool operator==(const ExtRoot &ER) const { in operator ==()
351 return Kind == ER.Kind && V.ImmVal == ER.V.ImmVal; in operator ==()
353 bool operator!=(const ExtRoot &ER) const { in operator !=()
354 return !operator==(ER); in operator !=()
356 bool operator<(const ExtRoot &ER) const;
364 ExtValue(const ExtRoot &ER, int32_t Off) : ExtRoot(ER), Offset(Off) {} in ExtValue()
399 void assignInits(const ExtRoot &ER, unsigned Begin, unsigned End,
425 friend raw_ostream &operator<< (raw_ostream &OS, const ExtRoot &ER);
508 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtRoot &ER) { in operator <<() argument
509 switch (ER.Kind) { in operator <<()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonConstExtenders.cpp352 bool operator==(const ExtRoot &ER) const { in operator ==()
353 return Kind == ER.Kind && V.ImmVal == ER.V.ImmVal; in operator ==()
355 bool operator!=(const ExtRoot &ER) const { in operator !=()
356 return !operator==(ER); in operator !=()
358 bool operator<(const ExtRoot &ER) const;
366 ExtValue(const ExtRoot &ER, int32_t Off) : ExtRoot(ER), Offset(Off) {} in ExtValue()
400 void assignInits(const ExtRoot &ER, unsigned Begin, unsigned End,
426 friend raw_ostream &operator<< (raw_ostream &OS, const ExtRoot &ER);
509 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtRoot &ER) { in operator <<() argument
510 switch (ER.Kind) { in operator <<()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp643 const ElementRegion *ER = nullptr; in getDescriptiveName() local
644 while ((ER = R->getAs<ElementRegion>())) { in getDescriptiveName()
646 if (auto CI = ER->getIndex().getAs<nonloc::ConcreteInt>()) { in getDescriptiveName()
654 std::string Idx = ER->getDescriptiveName(false); in getDescriptiveName()
659 R = ER->getSuperRegion(); in getDescriptiveName()
1160 const ElementRegion *ER = cast<ElementRegion>(R); in StripCasts() local
1161 if (!ER->getIndex().isZeroConstant()) in StripCasts()
1163 R = ER->getSuperRegion(); in StripCasts()
1190 const ElementRegion *ER = this; in getAsArrayOffset() local
1196 while (ER) { in getAsArrayOffset()
[all …]
DRegionStore.cpp1425 if (const ElementRegion* ER = dyn_cast<ElementRegion>(R)) { in getBinding() local
1431 return CastRetrievedVal(getBindingForElement(B, ER), ER, T, false); in getBinding()
1541 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) { in findLazyBinding() local
1542 Result = findLazyBinding(B, cast<SubRegion>(ER->getSuperRegion()), in findLazyBinding()
1546 Result.second = MRMgr.getElementRegionWithSuper(ER, Result.second); in findLazyBinding()
1690 if (const ElementRegion *ER = dyn_cast<ElementRegion>(LazyBindingRegion)) in getLazyBinding() local
1691 Result = getBindingForElement(LazyBinding, ER); in getLazyBinding()
1764 if (const ElementRegion *ER = dyn_cast<ElementRegion>(Base)) { in getBindingForFieldOrElementCommon() local
1765 NonLoc index = ER->getIndex(); in getBindingForFieldOrElementCommon()
2093 const ElementRegion *ER = MRMgr.getElementRegion(ElementTy, Idx, R, Ctx); in bindArray() local
[all …]
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp679 const ElementRegion *ER = nullptr; in getDescriptiveName() local
680 while ((ER = R->getAs<ElementRegion>())) { in getDescriptiveName()
682 if (auto CI = ER->getIndex().getAs<nonloc::ConcreteInt>()) { in getDescriptiveName()
690 std::string Idx = ER->getDescriptiveName(false); in getDescriptiveName()
695 R = ER->getSuperRegion(); in getDescriptiveName()
1314 const auto *ER = cast<ElementRegion>(R); in StripCasts() local
1315 if (!ER->getIndex().isZeroConstant()) in StripCasts()
1317 R = ER->getSuperRegion(); in StripCasts()
1345 const ElementRegion *ER = this; in getAsArrayOffset() local
1351 while (ER) { in getAsArrayOffset()
[all …]
DRegionStore.cpp1484 if (const ElementRegion* ER = dyn_cast<ElementRegion>(R)) { in getBinding() local
1490 return CastRetrievedVal(getBindingForElement(B, ER), ER, T); in getBinding()
1600 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) { in findLazyBinding() local
1601 Result = findLazyBinding(B, cast<SubRegion>(ER->getSuperRegion()), in findLazyBinding()
1605 Result.second = MRMgr.getElementRegionWithSuper(ER, Result.second); in findLazyBinding()
1808 if (const ElementRegion *ER = dyn_cast<ElementRegion>(LazyBindingRegion)) in getLazyBinding() local
1809 Result = getBindingForElement(LazyBinding, ER); in getLazyBinding()
1882 if (const ElementRegion *ER = dyn_cast<ElementRegion>(Base)) { in getBindingForFieldOrElementCommon() local
1883 NonLoc index = ER->getIndex(); in getBindingForFieldOrElementCommon()
2229 const ElementRegion *ER = MRMgr.getElementRegion(ElementTy, Idx, R, Ctx); in bindArray() local
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DTpiHashing.h27 explicit TagRecordHash(codeview::EnumRecord ER, uint32_t Full, in TagRecordHash()
29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) { in TagRecordHash()
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DTpiHashing.h27 explicit TagRecordHash(codeview::EnumRecord ER, uint32_t Full, in TagRecordHash()
29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) { in TagRecordHash()
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DLambdaFunctionNameCheck.cpp81 auto ER = in check() local
83 if (SuppressMacroExpansions.find(ER.getAsRange()) != in check()
/external/llvm-project/llvm/lib/Analysis/
DInlineSizeEstimatorAnalysis.cpp247 auto ER = Evaluator->evaluate(); in run() local
248 if (!ER) in run()
250 float Ret = *ER->getTensorValue<float>(0); in run()
/external/llvm-project/clang-tools-extra/clangd/
DSourceCode.cpp1046 EligibleRegion ER; in getEligiblePoints() local
1081 if (CurrentNamespace.size() > ER.EnclosingNamespace.size()) { in getEligiblePoints()
1082 ER.EligiblePoints.clear(); in getEligiblePoints()
1083 ER.EnclosingNamespace = CurrentNamespace; in getEligiblePoints()
1085 if (CurrentNamespace.size() == ER.EnclosingNamespace.size()) in getEligiblePoints()
1086 ER.EligiblePoints.emplace_back(std::move(Event.Pos)); in getEligiblePoints()
1089 if (ER.EligiblePoints.empty()) { in getEligiblePoints()
1090 assert(ER.EnclosingNamespace.empty()); in getEligiblePoints()
1091 ER.EligiblePoints.emplace_back(offsetToPosition(Code, Code.size())); in getEligiblePoints()
1093 return ER; in getEligiblePoints()
/external/rust/crates/ring/src/ec/suite_b/ops/
Delem.rs63 pub fn binary_op<M, EA: Encoding, EB: Encoding, ER: Encoding>( in binary_op()
67 ) -> Elem<M, ER> { in binary_op() argument
/external/curl/tests/certs/
DServer-localhost-lastSAN-sv.pub.pem5 AImouvV+CIPzmvWYuJ/W2MfU8wccj++8KRBgjIWLTHpzx5+oIy/ER/UYhZj7J95Y

12345678910>>...17