Home
last modified time | relevance | path

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

12345678910>>...26

/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/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()
DCStringChecker.cpp288 const ElementRegion *ER = dyn_cast<ElementRegion>(R); in CheckLocation() local
289 if (!ER) in CheckLocation()
292 assert(ER->getValueType() == C.getASTContext().CharTy && in CheckLocation()
296 const SubRegion *superReg = cast<SubRegion>(ER->getSuperRegion()); in CheckLocation()
303 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in CheckLocation()
872 const ElementRegion *ER = dyn_cast<ElementRegion>(R); in IsFirstBufInBound() local
873 if (!ER) in IsFirstBufInBound()
876 assert(ER->getValueType() == C.getASTContext().CharTy && in IsFirstBufInBound()
880 const SubRegion *superReg = cast<SubRegion>(ER->getSuperRegion()); in IsFirstBufInBound()
886 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in IsFirstBufInBound()
[all …]
/external/rust/crates/glam/tests/
Deuler.rs88 impl_3axis_test!(test_euler_zyx, $t, $q, ER::ZYX, $v::Z, $v::Y, $v::X, $v);
89 impl_3axis_test!(test_euler_zxy, $t, $q, ER::ZXY, $v::Z, $v::X, $v::Y, $v);
90 impl_3axis_test!(test_euler_yxz, $t, $q, ER::YXZ, $v::Y, $v::X, $v::Z, $v);
91 impl_3axis_test!(test_euler_yzx, $t, $q, ER::YZX, $v::Y, $v::Z, $v::X, $v);
92 impl_3axis_test!(test_euler_xyz, $t, $q, ER::XYZ, $v::X, $v::Y, $v::Z, $v);
93 impl_3axis_test!(test_euler_xzy, $t, $q, ER::XZY, $v::X, $v::Z, $v::Y, $v);
100 type ER = EulerRot; typedef
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-WPS64 If you want to enable WPS external registrar (ER) functionality, you
225 wpa_supplicant as WPS External Registrar (ER)
228 wpa_supplicant can be used as a WPS ER to configure an AP or enroll
233 Separate wpa_supplicant process can be started for WPS ER
236 example, the following command could be used to start the ER:
245 wpa_cli commands for ER functionality:
248 - start WPS ER functionality
251 - if run again while ER is active, the stored information (discovered APs
255 - stop WPS ER functionality
283 WPS ER events:
[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 …]
DProgramState.cpp710 if (const ElementRegion *ER = dyn_cast<ElementRegion>(Reg)) in isTainted() local
711 return isTainted(ER->getSuperRegion(), K) || isTainted(ER->getIndex(), K); in isTainted()
716 if (const SubRegion *ER = dyn_cast<SubRegion>(Reg)) in isTainted() local
717 return isTainted(ER->getSuperRegion(), K); in isTainted()
/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/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/clang/lib/Sema/
DSemaStmtAsm.cpp181 ExprResult ER = CheckPlaceholderExpr(Exprs[i]); in ActOnGCCAsmStmt() local
182 if (ER.isInvalid()) in ActOnGCCAsmStmt()
184 Exprs[i] = ER.get(); in ActOnGCCAsmStmt()
262 ExprResult ER = CheckPlaceholderExpr(Exprs[i]); in ActOnGCCAsmStmt() local
263 if (ER.isInvalid()) in ActOnGCCAsmStmt()
265 Exprs[i] = ER.get(); in ActOnGCCAsmStmt()
/external/python/asn1crypto/tests/fixtures/geotrust_certs/
DGeoTrust_Universal_CA.pem28 ER/frslKxfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQt
/external/cronet/third_party/icu/source/data/translit/
Dsr_sr_Latn_BGN.txt100 Р → R ; # CYRILLIC CAPITAL LETTER ER
101 р → r ; # CYRILLIC SMALL LETTER ER
/external/icu/icu4c/source/data/translit/
Dsr_sr_Latn_BGN.txt100 Р → R ; # CYRILLIC CAPITAL LETTER ER
101 р → r ; # CYRILLIC SMALL LETTER ER
/external/icu/icu4c/source/tools/tzcode/
Dicuregions12 Africa/Asmera ER
/external/cronet/third_party/icu/source/tools/tzcode/
Dicuregions12 Africa/Asmera ER
/external/clang/test/Preprocessor/
Dmicrosoft-ext.c35 MAKE_FUNC(MAK, ER, int a, _COMMA, int b);
/external/llvm/include/llvm/ProfileData/
DInstrProf.h872 Entry &ER = getCutoffEntryBase()[I]; in setEntry() local
873 ER.Cutoff = E.Cutoff; in setEntry()
874 ER.MinBlockCount = E.MinCount; in setEntry()
875 ER.NumBlocks = E.NumCounts; in setEntry()
/external/cronet/third_party/icu/source/data/region/
Dfa_AF.txt30 ER{"اریتریا"}
Dzh_Hant_HK.txt32 ER{"厄立特里亞"}
/external/icu/icu4c/source/data/region/
Dfa_AF.txt30 ER{"اریتریا"}
Dzh_Hant_HK.txt32 ER{"厄立特里亞"}

12345678910>>...26