| /netbsd-src/sys/arch/arm/samsung/ |
| H A D | exynos5_reg.h | 316 #define EXYNOS5_AES0&EF0 (ER) 0x08180000 317 #define EXYNOS5_AES0&EF0 (ER) 0x08190000 318 #define EXYNOS5_AES0&EF0 (ER) 0x081A0000 319 #define EXYNOS5_AES0&EF0 (ER) 0x081B0000 320 #define EXYNOS5_AES0&EF0 (ER) 0x081C0000 321 #define EXYNOS5_AES0&EF0 (ER) 0x081D0000 322 #define EXYNOS5_AES0&EF0 (ER) 0x081E0000 323 #define EXYNOS5_AES0&EF0 (ER) 0x081F0000 350 #define EXYNOS5_AES1&EF1 (ER) 0x08580000 351 #define EXYNOS5_AES1&EF1 (ER) 0x08590000 [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| H A D | MPIChecker.cpp | 34 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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGValue.h | 87 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 …]
|
| /netbsd-src/external/mpl/dhcp/dist/contrib/ms2isc/ |
| H A D | ms2isc.pl | 486 my ($SA, $EA, @ER); 489 @ER = @ExclusionRanges; 490 for (my $i=0; $i<=$#ER; $i++) { 491 $ER[$i] = unpack ("L", $ER[$i]); 500 for (my $i=0; $i<=$#ER; $i+=2) { 501 if ($ER[$i] == $InclusionRanges[$#InclusionRanges-1]) { 502 $InclusionRanges[$#InclusionRanges-1] = $ER[$i+1] + 1; 504 if ($ER[$i] > $InclusionRanges[$#InclusionRanges-1]) { 505 $InclusionRanges[$#InclusionRanges] = $ER[$i]-1; 507 if (($ER[$i+1] > $InclusionRanges[$#InclusionRanges]) && [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ArrayBoundChecker.cpp | 43 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()
|
| H A D | ReturnPointerRangeChecker.cpp | 46 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()
|
| H A D | UndefResultChecker.cpp | 49 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()
|
| H A D | Taint.cpp | 165 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()
|
| H A D | CStringChecker.cpp | 339 const auto *ER = dyn_cast<ElementRegion>(R); in CheckLocation() local 340 if (!ER) in CheckLocation() 343 if (ER->getValueType() != C.getASTContext().CharTy) in CheckLocation() 347 const auto *superReg = cast<SubRegion>(ER->getSuperRegion()); in CheckLocation() 352 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in CheckLocation() 915 const ElementRegion *ER = dyn_cast<ElementRegion>(R); in IsFirstBufInBound() local 916 if (!ER) in IsFirstBufInBound() 921 assert(ER->getValueType() == C.getASTContext().CharTy && in IsFirstBufInBound() 925 const SubRegion *superReg = cast<SubRegion>(ER->getSuperRegion()); in IsFirstBufInBound() 929 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>(); in IsFirstBufInBound() [all …]
|
| /netbsd-src/usr.sbin/makefs/cd9660/ |
| H A D | iso9660_rrip.c | 789 r->attr.su_entry.ER.h.length[0] = 8; in cd9660_susp_ER() 790 r->attr.su_entry.ER.h.version[0] = 1; in cd9660_susp_ER() 792 r->attr.su_entry.ER.len_id[0] = (u_char)strlen(ext_id); in cd9660_susp_ER() 793 r->attr.su_entry.ER.len_des[0] = (u_char)strlen(ext_des); in cd9660_susp_ER() 794 r->attr.su_entry.ER.len_src[0] = (u_char)strlen(ext_src); in cd9660_susp_ER() 796 l = r->attr.su_entry.ER.len_id[0] + in cd9660_susp_ER() 797 r->attr.su_entry.ER.len_src[0] + in cd9660_susp_ER() 798 r->attr.su_entry.ER.len_des[0]; in cd9660_susp_ER() 801 assert(l + r->attr.su_entry.ER.h.length[0] <= 254); in cd9660_susp_ER() 803 r->attr.su_entry.ER.h.length[0] += (u_char)l; in cd9660_susp_ER() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstExtenders.cpp | 350 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | MemRegion.cpp | 680 const ElementRegion *ER = nullptr; in getDescriptiveName() local 681 while ((ER = R->getAs<ElementRegion>())) { in getDescriptiveName() 683 if (auto CI = ER->getIndex().getAs<nonloc::ConcreteInt>()) { in getDescriptiveName() 691 std::string Idx = ER->getDescriptiveName(false); in getDescriptiveName() 696 R = ER->getSuperRegion(); in getDescriptiveName() 1308 const auto *ER = cast<ElementRegion>(R); in StripCasts() local 1309 if (!ER->getIndex().isZeroConstant()) in StripCasts() 1311 R = ER->getSuperRegion(); in StripCasts() 1339 const ElementRegion *ER = this; in getAsArrayOffset() local 1345 while (ER) { in getAsArrayOffset() [all …]
|
| H A D | RegionStore.cpp | 1483 if (const ElementRegion* ER = dyn_cast<ElementRegion>(R)) { in getBinding() local 1489 return svalBuilder.evalCast(getBindingForElement(B, ER), T, QualType{}); in getBinding() 1599 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) { in findLazyBinding() local 1600 Result = findLazyBinding(B, cast<SubRegion>(ER->getSuperRegion()), in findLazyBinding() 1604 Result.second = MRMgr.getElementRegionWithSuper(ER, Result.second); in findLazyBinding() 1807 if (const ElementRegion *ER = dyn_cast<ElementRegion>(LazyBindingRegion)) in getLazyBinding() local 1808 Result = getBindingForElement(LazyBinding, ER); in getLazyBinding() 1881 if (const ElementRegion *ER = dyn_cast<ElementRegion>(Base)) { in getBindingForFieldOrElementCommon() local 1882 NonLoc index = ER->getIndex(); in getBindingForFieldOrElementCommon() 2228 const ElementRegion *ER = MRMgr.getElementRegion(ElementTy, Idx, R, Ctx); in bindArray() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | TpiHashing.h | 27 explicit TagRecordHash(codeview::EnumRecord ER, uint32_t Full, in TagRecordHash() 29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) { in TagRecordHash()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | InlineSizeEstimatorAnalysis.cpp | 247 auto ER = Evaluator->evaluate(); in run() local 248 if (!ER) in run() 250 float Ret = *ER->getTensorValue<float>(0); in run()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 472 ExprResult ER = E; in ActOnCaseExpr() local 474 ER = VerifyIntegerConstantExpression(E, AllowFold); in ActOnCaseExpr() 475 if (!ER.isInvalid()) in ActOnCaseExpr() 476 ER = DefaultLvalueConversion(ER.get()); in ActOnCaseExpr() 477 if (!ER.isInvalid()) in ActOnCaseExpr() 478 ER = ImpCastExprToType(ER.get(), CondType, CK_IntegralCast); in ActOnCaseExpr() 479 if (!ER.isInvalid()) in ActOnCaseExpr() 480 ER = ActOnFinishFullExpr(ER.get(), ER.get()->getExprLoc(), false); in ActOnCaseExpr() 481 return ER; in ActOnCaseExpr() 3607 ExprResult ER = in ActOnCapScopeReturnStmt() local [all …]
|
| H A D | SemaStmtAsm.cpp | 282 ExprResult ER = CheckPlaceholderExpr(Exprs[i]); in ActOnGCCAsmStmt() local 283 if (ER.isInvalid()) in ActOnGCCAsmStmt() 285 Exprs[i] = ER.get(); in ActOnGCCAsmStmt() 373 ExprResult ER = CheckPlaceholderExpr(Exprs[i]); in ActOnGCCAsmStmt() local 374 if (ER.isInvalid()) in ActOnGCCAsmStmt() 376 Exprs[i] = ER.get(); in ActOnGCCAsmStmt()
|
| /netbsd-src/external/gpl2/groff/dist/font/devlbp/ |
| H A D | Makefile.sub | 8 ER EB EI
|
| /netbsd-src/external/gpl2/groff/font/devlbp/ |
| H A D | Makefile | 10 TB TBI TI TR CR CB CI ER EB EI
|
| /netbsd-src/external/bsd/pcc/dist/pcc/f77/fcom/ |
| H A D | scjdefs.h | 14 #define P2BITXOR ER
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/pdp10/ |
| H A D | table.c | 542 { ER, FOREFF|INAREG|INAREG, 549 { ER, FOREFF|INAREG|INAREG, 556 { ER, FOREFF|INAREG|INAREG, 563 { ER, FOREFF|INAREG|INAREG, 570 { ER, INAREG|FOREFF, 578 { ER, FORREW|FOREFF|INAREG|INAREG,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/ |
| H A D | InstrProf.h | 1081 Entry &ER = getCutoffEntryBase()[I]; in setEntry() local 1082 ER.Cutoff = E.Cutoff; in setEntry() 1083 ER.MinBlockCount = E.MinCount; in setEntry() 1084 ER.NumBlocks = E.NumCounts; in setEntry()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/mip/ |
| H A D | node.h | 165 #define ER 17 macro
|
| /netbsd-src/sys/arch/hpc/stand/hpcboot/sh3/dev/ |
| H A D | sh_dev.cpp | 131 DBG_BIT_PRINT(r16, ER); in scif_dump()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/ |
| H A D | optim.c | 283 case ER: in optim() 344 if ((o == PLUS || o == MINUS || o == OR || o == ER) && in optim()
|