Home
last modified time | relevance | path

Searched refs:Rep (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DContinuousRangeMap.h49 Representation Rep; variable
68 if (!Rep.empty() && Rep.back() == Val) in insert()
71 assert((Rep.empty() || Rep.back().first < Val.first) && in insert()
73 Rep.push_back(Val); in insert()
77 iterator I = std::lower_bound(Rep.begin(), Rep.end(), Val, Compare()); in insertOrReplace()
83 Rep.insert(I, Val); in insertOrReplace()
95 iterator I = std::upper_bound(Rep.begin(), Rep.end(), K, Compare()); in find()
98 if (I == Rep.begin()) in find()
99 return Rep.end(); in find()
122 std::unique(Self.Rep.begin(), Self.Rep.end(), in ~Builder()
[all …]
/freebsd-12.1/contrib/llvm/lib/IR/
H A DAutoUpgrade.cpp1638 Rep = Builder.CreateVectorSplat(NumElts, Rep); in UpgradeIntrinsicCall()
1682 Rep = Builder.CreateICmp(Pred, Rep, Zero); in UpgradeIntrinsicCall()
1738 Rep = Builder.CreateNot(Rep); in UpgradeIntrinsicCall()
1751 Rep = Builder.CreateICmpEQ(Rep, C); in UpgradeIntrinsicCall()
1940 Rep = Builder.CreateShuffleVector(Rep, Rep, ShuffleMask); in UpgradeIntrinsicCall()
2036 Rep = in UpgradeIntrinsicCall()
2514 Rep = Builder.CreateBitCast(Rep, FTy); in UpgradeIntrinsicCall()
2522 Rep = Builder.CreateAnd(Rep, in UpgradeIntrinsicCall()
2524 Rep = Builder.CreateBitCast(Rep, FTy); in UpgradeIntrinsicCall()
2533 Rep = Builder.CreateBitCast(Rep, FTy); in UpgradeIntrinsicCall()
[all …]
/freebsd-12.1/crypto/heimdal/lib/asn1/
H A Dsetchgpw2.asn136 Rep-null ::= NULL
47 Rep-change-pw ::= SEQUENCE {
74 Rep-set-keys ::= SEQUENCE {
99 Rep-get-pw-policy ::= SEQUENCE {
111 Rep-get-princ-aliases ::= SEQUENCE {
126 Rep-get-supported-etypes ::= SEQUENCE OF ENCTYPE
143 null[0] Rep-null,
144 change-pw[1] Rep-change-pw,
145 set-keys[2] Rep-set-keys,
146 get-pw-policy[3] Rep-get-pw-policy,
[all …]
/freebsd-12.1/contrib/libc++/include/
H A Dcondition_variable49 template <class Rep, class Period>
52 const chrono::duration<Rep, Period>& rel_time);
54 template <class Rep, class Period, class Predicate>
57 const chrono::duration<Rep, Period>& rel_time,
94 template <class Lock, class Rep, class Period>
97 const chrono::duration<Rep, Period>& rel_time);
99 template <class Lock, class Rep, class Period, class Predicate>
102 const chrono::duration<Rep, Period>& rel_time,
H A Dshared_mutex57 template <class Rep, class Period>
58 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
66 template <class Rep, class Period>
68 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time);
90 template <class Rep, class Period>
92 const chrono::duration<Rep, Period>& rel_time);
103 template <class Rep, class Period>
104 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
401 template <class Rep, class Period>
402 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
H A Dmutex65 template <class Rep, class Period>
66 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
83 template <class Rep, class Period>
84 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
139 template <class Rep, class Period>
140 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time);
152 template <class Rep, class Period>
153 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
H A Dchrono22 template <class ToDuration, class Rep, class Period>
25 duration_cast(const duration<Rep, Period>& fd);
27 template <class Rep> struct treat_as_floating_point : is_floating_point<Rep> {};
32 template <class Rep>
36 static constexpr Rep zero(); // noexcept in C++20
37 static constexpr Rep max(); // noexcept in C++20
43 template <class Rep, class Period = ratio<1>>
50 typedef Rep rep;
261 template <class Rep, class Period>
262 constexpr duration<Rep, Period> abs(duration<Rep, Period> d); // C++17
[all …]
H A Dfuture168 template <class Rep, class Period>
170 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
195 template <class Rep, class Period>
197 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
222 template <class Rep, class Period>
224 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
249 template <class Rep, class Period>
251 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
276 template <class Rep, class Period>
278 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
[all …]
H A Dthread79 template <class Rep, class Period>
80 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DChrono.h112 template <typename Rep, typename Period>
113 struct format_provider<std::chrono::duration<Rep, Period>> {
115 typedef std::chrono::duration<Rep, Period> Dur;
117 std::chrono::treat_as_floating_point<Rep>::value, double, intmax_t>::type
/freebsd-12.1/share/doc/psd/15.yacc/
H A Dref.bib37 %R Comp. Sci. Tech. Rep. No. 65
52 %R Comp. Sci. Tech. Rep. No. 17
66 %R Comp. Sci. Tech. Rep. No. 39
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DScopeInfo.h329 llvm::PointerIntPair<const Expr *, 1, bool> Rep; variable
332 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy()
334 const Expr *getUseExpr() const { return Rep.getPointer(); } in getUseExpr()
335 bool isUnsafe() const { return Rep.getInt(); } in isUnsafe()
336 void markSafe() { Rep.setInt(false); } in markSafe()
339 return Rep == Other.Rep;
H A DDeclSpec.h653 unsigned &DiagID, ParsedType Rep,
656 unsigned &DiagID, Decl *Rep, bool Owned,
660 unsigned &DiagID, ParsedType Rep,
664 unsigned &DiagID, Decl *Rep, bool Owned,
668 unsigned &DiagID, Expr *Rep,
685 void UpdateDeclRep(Decl *Rep) { in UpdateDeclRep() argument
687 DeclRep = Rep; in UpdateDeclRep()
689 void UpdateTypeRep(ParsedType Rep) { in UpdateTypeRep() argument
691 TypeRep = Rep; in UpdateTypeRep()
693 void UpdateExprRep(Expr *Rep) { in UpdateExprRep() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp697 ParsedType Rep, in SetTypeSpecType() argument
706 ParsedType Rep, in SetTypeSpecType() argument
709 assert(Rep && "no type provided!"); in SetTypeSpecType()
716 TypeRep = Rep; in SetTypeSpecType()
726 Expr *Rep, in SetTypeSpecType() argument
729 assert(Rep && "no expression provided!"); in SetTypeSpecType()
736 ExprRep = Rep; in SetTypeSpecType()
746 Decl *Rep, bool Owned, in SetTypeSpecType() argument
755 Decl *Rep, bool Owned, in SetTypeSpecType() argument
766 DeclRep = Rep; in SetTypeSpecType()
[all …]
H A DSemaExprMember.cpp199 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()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonPatternsHVX.td230 def Rep: OutPatFrag<(ops node:$N), (Combinev $N, $N)>;
237 def: Pat<(VecPI8 (HexagonVSPLAT u8_0ImmPred:$V)), (Rep (Vsplatib $V))>;
238 def: Pat<(VecPI16 (HexagonVSPLAT u16_0ImmPred:$V)), (Rep (Vsplatih $V))>;
239 def: Pat<(VecPI32 (HexagonVSPLAT anyimm:$V)), (Rep (Vsplatiw $V))>;
244 def: Pat<(VecPI8 (HexagonVSPLAT I32:$Rs)), (Rep (Vsplatrb $Rs))>;
245 def: Pat<(VecPI16 (HexagonVSPLAT I32:$Rs)), (Rep (Vsplatrh $Rs))>;
246 def: Pat<(VecPI32 (HexagonVSPLAT I32:$Rs)), (Rep (Vsplatrw $Rs))>;
251 def: Pat<(VecPI8 (HexagonVSPLATW I32:$Rs)), (Rep (Vsplatrw $Rs))>;
252 def: Pat<(VecPI16 (HexagonVSPLATW I32:$Rs)), (Rep (Vsplatrw $Rs))>;
253 def: Pat<(VecPI32 (HexagonVSPLATW I32:$Rs)), (Rep (Vsplatrw $Rs))>;
H A DHexagonISelLoweringHVX.cpp825 unsigned Rep = VecTy.getVectorNumElements() / ResLen; in extractHvxSubvectorPred() local
826 assert(isPowerOf2_32(Rep) && HwLen % Rep == 0); in extractHvxSubvectorPred()
827 for (unsigned i = 0; i != HwLen/Rep; ++i) { in extractHvxSubvectorPred()
828 for (unsigned j = 0; j != Rep; ++j) in extractHvxSubvectorPred()
845 unsigned Rep = 8 / ResLen; in extractHvxSubvectorPred() local
851 for (unsigned j = 0; j != Rep; ++j) in extractHvxSubvectorPred()
H A DHexagonCommonGEP.cpp641 GepNode *Rep = F->second; in common() local
642 N->Parent = Rep; in common()
/freebsd-12.1/usr.bin/calendar/calendars/pt_BR.ISO8859-1/
H A Dcalendar.holidays22 11/15 Dia da proclama��o da Rep�blica
/freebsd-12.1/usr.bin/calendar/calendars/pt_BR.UTF-8/
H A Dcalendar.holidays22 11/15 Dia da proclamação da República
/freebsd-12.1/share/doc/psd/01.cacm/
H A Dref.bib14 %R Comp. Sci. Tech. Rep. No. 17
/freebsd-12.1/contrib/tzdata/
H A Dzone.tab136 CD -0418+01518 Africa/Kinshasa Dem. Rep. of Congo (west)
137 CD -1140+02728 Africa/Lubumbashi Dem. Rep. of Congo (east)
H A Dafrica1236 Link Africa/Maputo Africa/Lubumbashi # E Dem. Rep. of Congo
1386 Link Africa/Lagos Africa/Brazzaville # Rep. of the Congo
1388 Link Africa/Lagos Africa/Kinshasa # Dem. Rep. of the Congo (west)
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DDenseMap.h1168 LargeRep Rep = { in allocateBuckets() local
1171 return Rep; in allocateBuckets()
/freebsd-12.1/usr.bin/calendar/calendars/
H A Dcalendar.holiday211 06/03* Bank Holiday in Rep. of Ireland
552 12/26 Bank Holiday in Canada, Rep. of Ireland, and UK

12