| /openbsd-src/gnu/llvm/clang/include/clang/Serialization/ |
| H A D | ContinuousRangeMap.h | 48 Representation Rep; variable 67 if (!Rep.empty() && Rep.back() == Val) in insert() 70 assert((Rep.empty() || Rep.back().first < Val.first) && in insert() 72 Rep.push_back(Val); in insert() 76 iterator I = llvm::lower_bound(Rep, Val, Compare()); in insertOrReplace() 77 if (I != Rep.end() && I->first == Val.first) { in insertOrReplace() 82 Rep.insert(I, Val); in insertOrReplace() 88 iterator begin() { return Rep.begin(); } in begin() 89 iterator end() { return Rep.end(); } in end() 90 const_iterator begin() const { return Rep.begin(); } in begin() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | AutoUpgrade.cpp | 1732 Value *Rep = Builder.CreateCall(Intrin, in UpgradeX86MaskedShift() local 1734 return EmitX86Select(Builder, CI.getArgOperand(3), Rep, CI.getArgOperand(2)); in UpgradeX86MaskedShift() 1762 CallBase &CI, Value *&Rep) { in upgradeAVX512MaskToSelect() argument 1991 Rep = Builder.CreateCall(Intrinsic::getDeclaration(CI.getModule(), IID), in upgradeAVX512MaskToSelect() 1994 Rep = EmitX86Select(Builder, CI.getArgOperand(NumArgs - 1), Rep, in upgradeAVX512MaskToSelect() 2236 Value *Rep; in UpgradeIntrinsicCall() local 2242 Rep = Builder.CreateICmp(CmpEq ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_SGT, in UpgradeIntrinsicCall() 2244 Rep = Builder.CreateSExt(Rep, CI->getType(), ""); in UpgradeIntrinsicCall() 2251 Rep = Builder.CreateZExt(CI->getArgOperand(0), ExtTy); in UpgradeIntrinsicCall() 2252 Rep = Builder.CreateVectorSplat(NumElts, Rep); in UpgradeIntrinsicCall() [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/ |
| H A D | p4736c.C | 5 class Rep { 7 virtual ~Rep() { } in ~Rep() 10 class Rep_1 : public Rep { 23 class Rep_2 : public Rep { 43 delete (Rep*)(Rep_1*)new Main; in main() local 55 delete (Rep*)(Rep_2*)(DVBase*)new Main; in main() local
|
| H A D | p4736b.C | 3 class Rep { 8 class Rep_1 : public Rep { 21 class Rep_2 : public Rep { 38 if (((Rep*)(Rep_1*)&m)->foo() != 5) in main() 44 if (((Rep*)(Rep_2*)(DVBase*)&m)->foo() != 5) in main()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
| H A D | crash47.C | 6 class Rep { 8 Rep(): count(0) in Rep() function 10 Rep(const Rep& other): count(0) in Rep() function 13 Rep& operator=(const Rep& other) 83 class XRep: public Rep {
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | semaphore | 33 template<class Rep, class Period> 34 bool try_acquire_for(const chrono::duration<Rep, Period>& rel_time); 109 template <class Rep, class Period> 111 bool try_acquire_for(chrono::duration<Rep, Period> const& __rel_time) 113 if (__rel_time == chrono::duration<Rep, Period>::zero()) 160 template<class Rep, class Period> 162 bool try_acquire_for(chrono::duration<Rep, Period> const& __rel_time)
|
| H A D | condition_variable | 48 template <class Rep, class Period> 51 const chrono::duration<Rep, Period>& rel_time); 53 template <class Rep, class Period, class Predicate> 56 const chrono::duration<Rep, Period>& rel_time, 93 template <class Lock, class Rep, class Period> 96 const chrono::duration<Rep, Period>& rel_time); 98 template <class Lock, class Rep, class Period, class Predicate> 101 const chrono::duration<Rep, Period>& rel_time,
|
| H A D | chrono | 23 template <class ToDuration, class Rep, class Period> 26 duration_cast(const duration<Rep, Period>& fd); 28 template <class Rep> struct treat_as_floating_point : is_floating_point<Rep> {}; 30 template <class Rep> inline constexpr bool treat_as_floating_point_v 31 = treat_as_floating_point<Rep>::value; // C++17 33 template <class Rep> 37 static constexpr Rep zero(); // noexcept in C++20 38 static constexpr Rep max(); // noexcept in C++20 39 static constexpr Rep min(); // noexcept in C++20 44 template <class Rep, class Period = ratio<1>> [all …]
|
| H A D | shared_mutex | 56 template <class Rep, class Period> 57 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 65 template <class Rep, class Period> 67 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time); 89 template <class Rep, class Period> 91 const chrono::duration<Rep, Period>& rel_time); 102 template <class Rep, class Period> 103 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 402 template <class Rep, class Period> 403 bool try_lock_for(const chrono::duration<Rep, Period>& __rel_time);
|
| H A D | mutex | 64 template <class Rep, class Period> 65 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 82 template <class Rep, class Period> 83 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 138 template <class Rep, class Period> 139 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time); 151 template <class Rep, class Period> 152 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
| H A D | future | 167 template <class Rep, class Period> 169 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 194 template <class Rep, class Period> 196 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 221 template <class Rep, class Period> 223 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 248 template <class Rep, class Period> 250 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 275 template <class Rep, class Period> 277 wait_for(const chrono::duration<Rep, Period>& rel_time) const; [all …]
|
| H A D | thread | 77 template <class Rep, class Period> 78 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Chrono.h | 112 template <typename Rep, typename Period> 113 struct format_provider<std::chrono::duration<Rep, Period>> { 115 typedef std::chrono::duration<Rep, Period> Dur; 116 typedef std::conditional_t<std::chrono::treat_as_floating_point<Rep>::value,
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 347 llvm::PointerIntPair<const Expr *, 1, bool> Rep; variable 350 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy() 352 const Expr *getUseExpr() const { return Rep.getPointer(); } in getUseExpr() 353 bool isUnsafe() const { return Rep.getInt(); } in isUnsafe() 354 void markSafe() { Rep.setInt(false); } in markSafe() 357 return Rep == Other.Rep;
|
| H A D | DeclSpec.h | 686 unsigned &DiagID, ParsedType Rep, 689 unsigned &DiagID, TypeResult Rep, in SetTypeSpecType() argument 691 if (Rep.isInvalid()) in SetTypeSpecType() 693 return SetTypeSpecType(T, Loc, PrevSpec, DiagID, Rep.get(), Policy); in SetTypeSpecType() 696 unsigned &DiagID, Decl *Rep, bool Owned, 700 unsigned &DiagID, ParsedType Rep, 704 unsigned &DiagID, Decl *Rep, bool Owned, 707 unsigned &DiagID, TemplateIdAnnotation *Rep, 711 unsigned &DiagID, Expr *Rep, 731 void UpdateDeclRep(Decl *Rep) { in UpdateDeclRep() argument [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | DeclSpec.cpp | 741 ParsedType Rep, in SetTypeSpecType() argument 743 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Policy); in SetTypeSpecType() 750 ParsedType Rep, in SetTypeSpecType() argument 753 assert(Rep && "no type provided!"); in SetTypeSpecType() 762 TypeRep = Rep; in SetTypeSpecType() 772 Expr *Rep, in SetTypeSpecType() argument 775 assert(Rep && "no expression provided!"); in SetTypeSpecType() 784 ExprRep = Rep; in SetTypeSpecType() 794 Decl *Rep, bool Owned, in SetTypeSpecType() argument 796 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy); in SetTypeSpecType() [all …]
|
| H A D | SemaExprMember.cpp | 199 NamedDecl *Rep, in diagnoseInstanceReference() argument 206 Rep = Rep->getUnderlyingDecl(); in diagnoseInstanceReference() 211 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext()); in diagnoseInstanceReference() 214 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep); in diagnoseInstanceReference()
|
| /openbsd-src/share/misc/ |
| H A D | inter.phone | 11 20:2:Cairo:Egypt, Arab Rep. of 12 20:3:Alexandria:Egypt, Arab Rep. of 13 20:66:Port Said:Egypt, Arab Rep. of 14 20:95:Luxor:Egypt, Arab Rep. of 15 20:97:Aswan:Egypt, Arab Rep. of 1877 65:::Singapore, Rep. of 1899 86:1:Beijing:China, People's Rep. of 1900 86:20:Ghuangzhou:China, People's Rep. of 1901 86:21:Shanghai:China, People's Rep. of 1902 86:591:Fuzhou:China, People's Rep. of [all …]
|
| /openbsd-src/share/zoneinfo/datfiles/ |
| H A D | iso3166.tab | 71 CD Congo (Dem. Rep.) 72 CF Central African Rep. 73 CG Congo (Rep.)
|
| H A D | zone.tab | 135 CD -0418+01518 Africa/Kinshasa Dem. Rep. of Congo (west) 136 CD -1140+02728 Africa/Lubumbashi Dem. Rep. of Congo (east)
|
| /openbsd-src/games/quiz/datfiles/ |
| H A D | africa | 9 Central Africa{n Rep{ublic}}:Bangui
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | FormatPaper.csv | 3 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::duration<Rep, Period>``",,Mark de W… 26 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::hh_mm_ss<duration<Rep, Period>>``",…
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonPatternsHVX.td | 337 def Rep: OutPatFrag<(ops node:$N), (Combinev $N, $N)>; 344 def: Pat<(VecPI8 (splat_vector u8_0ImmPred:$V)), (Rep (PS_vsplatib imm:$V))>; 345 def: Pat<(VecPI16 (splat_vector u16_0ImmPred:$V)), (Rep (PS_vsplatih imm:$V))>; 346 def: Pat<(VecPI32 (splat_vector anyimm:$V)), (Rep (PS_vsplatiw imm:$V))>; 351 def: Pat<(VecPI8 (splat_vector I32:$Rs)), (Rep (PS_vsplatrb $Rs))>; 352 def: Pat<(VecPI16 (splat_vector I32:$Rs)), (Rep (PS_vsplatrh $Rs))>; 353 def: Pat<(VecPI32 (splat_vector I32:$Rs)), (Rep (PS_vsplatrw $Rs))>;
|
| H A D | HexagonCommonGEP.cpp | 634 GepNode *Rep = F->second; in common() local 635 N->Parent = Rep; in common()
|
| /openbsd-src/usr.bin/calendar/calendars/ |
| H A D | calendar.holiday | 203 06/03* Bank Holiday in Rep. of Ireland 399 10/28* Bank Holiday in Rep. of Ireland 463 12/26 Bank Holiday in Canada, Rep. of Ireland, and UK
|