Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DContinuousRangeMap.h48 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()
82 Rep.insert(I, Val); in insertOrReplace()
97 if (I == Rep.begin()) in find()
98 return Rep.end(); in find()
121 Self.Rep.erase( in ~Builder()
123 Self.Rep.begin(), Self.Rep.end(), in ~Builder()
131 Self.Rep.end()); in ~Builder()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp2476 Rep = Builder.CreateVectorSplat(NumElts, Rep); in UpgradeIntrinsicCall()
2520 Rep = Builder.CreateICmp(Pred, Rep, Zero); in UpgradeIntrinsicCall()
2575 Rep = Builder.CreateNot(Rep); in UpgradeIntrinsicCall()
2588 Rep = Builder.CreateICmpEQ(Rep, C); in UpgradeIntrinsicCall()
2777 Rep = Builder.CreateShuffleVector(Rep, Rep, ArrayRef<int>{0, 1}); in UpgradeIntrinsicCall()
2808 Rep = Builder.CreateShuffleVector(Rep, Rep, ArrayRef<int>{0, 1, 2, 3}); in UpgradeIntrinsicCall()
3384 Rep = Builder.CreateBitCast(Rep, FTy); in UpgradeIntrinsicCall()
3392 Rep = Builder.CreateAnd(Rep, in UpgradeIntrinsicCall()
3394 Rep = Builder.CreateBitCast(Rep, FTy); in UpgradeIntrinsicCall()
3403 Rep = Builder.CreateBitCast(Rep, FTy); in UpgradeIntrinsicCall()
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/libcxx/include/
H A Dchrono25 template <class ToDuration, class Rep, class Period>
28 duration_cast(const duration<Rep, Period>& fd);
30 template <class Rep> struct treat_as_floating_point : is_floating_point<Rep> {};
35 template <class Rep>
39 static constexpr Rep zero(); // noexcept in C++20
40 static constexpr Rep max(); // noexcept in C++20
46 template <class Rep, class Period = ratio<1>>
53 typedef Rep rep;
220 const duration<Rep, Period>& d);
271 template <class Rep, class Period>
[all …]
H A Dcondition_variable48 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,
112 template <class Lock, class Rep, class Period, class Predicate>
114 … const chrono::duration<Rep, Period>& rel_time, Predicate pred); // since C++20
H A Dshared_mutex56 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);
H A Dmutex64 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 Dthread80 template <class Rep, class Period>
81 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
H A Dsemaphore33 template<class Rep, class Period>
34 bool try_acquire_for(const chrono::duration<Rep, Period>& rel_time);
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 …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DChrono.h138 template <typename Rep, typename Period>
139 struct format_provider<std::chrono::duration<Rep, Period>> {
141 typedef std::chrono::duration<Rep, Period> Dur;
142 typedef std::conditional_t<std::chrono::treat_as_floating_point<Rep>::value,
/freebsd-14.2/share/doc/psd/15.yacc/
H A Dref.bib36 %R Comp. Sci. Tech. Rep. No. 65
51 %R Comp. Sci. Tech. Rep. No. 17
65 %R Comp. Sci. Tech. Rep. No. 39
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h353 llvm::PointerIntPair<const Expr *, 1, bool> Rep; variable
356 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy()
358 const Expr *getUseExpr() const { return Rep.getPointer(); } in getUseExpr()
359 bool isUnsafe() const { return Rep.getInt(); } in isUnsafe()
360 void markSafe() { Rep.setInt(false); } in markSafe()
363 return Rep == Other.Rep;
H A DDeclSpec.h702 unsigned &DiagID, ParsedType Rep,
705 unsigned &DiagID, TypeResult Rep, in SetTypeSpecType() argument
707 if (Rep.isInvalid()) in SetTypeSpecType()
716 unsigned &DiagID, ParsedType Rep,
727 unsigned &DiagID, Expr *Rep,
747 void UpdateDeclRep(Decl *Rep) { in UpdateDeclRep() argument
749 DeclRep = Rep; in UpdateDeclRep()
751 void UpdateTypeRep(ParsedType Rep) { in UpdateTypeRep() argument
753 TypeRep = Rep; in UpdateTypeRep()
755 void UpdateExprRep(Expr *Rep) { in UpdateExprRep() argument
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp753 ParsedType Rep, in SetTypeSpecType() argument
762 ParsedType Rep, in SetTypeSpecType() argument
765 assert(Rep && "no type provided!"); in SetTypeSpecType()
774 TypeRep = Rep; in SetTypeSpecType()
784 Expr *Rep, in SetTypeSpecType() argument
787 assert(Rep && "no expression provided!"); in SetTypeSpecType()
796 ExprRep = Rep; in SetTypeSpecType()
806 Decl *Rep, bool Owned, in SetTypeSpecType() argument
828 DeclRep = Rep; in SetTypeSpecType()
831 TypeSpecOwned = Owned && Rep != nullptr; in SetTypeSpecType()
[all …]
H A DSemaExprMember.cpp205 NamedDecl *Rep, in diagnoseInstanceReference() argument
212 Rep = Rep->getUnderlyingDecl(); in diagnoseInstanceReference()
217 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext()); in diagnoseInstanceReference()
222 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep); in diagnoseInstanceReference()
256 if (const auto *Tpl = dyn_cast<FunctionTemplateDecl>(Rep)) in diagnoseInstanceReference()
257 Rep = Tpl->getTemplatedDecl(); in diagnoseInstanceReference()
258 const auto *Callee = cast<CXXMethodDecl>(Rep); in diagnoseInstanceReference()
/freebsd-14.2/share/doc/psd/01.cacm/
H A Dref.bib13 %R Comp. Sci. Tech. Rep. No. 17
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonPatternsHVX.td337 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 DHexagonCommonGEP.cpp634 GepNode *Rep = F->second; in common() local
635 N->Parent = Rep; in common()
H A DHexagonISelLoweringHVX.cpp1315 unsigned Rep = VecTy.getVectorNumElements() / ResLen; in extractHvxSubvectorPred() local
1316 assert(isPowerOf2_32(Rep) && HwLen % Rep == 0); in extractHvxSubvectorPred()
1317 for (unsigned i = 0; i != HwLen/Rep; ++i) { in extractHvxSubvectorPred()
1318 for (unsigned j = 0; j != Rep; ++j) in extractHvxSubvectorPred()
1335 unsigned Rep = 8 / ResLen; in extractHvxSubvectorPred() local
1341 for (unsigned j = 0; j != Rep; ++j) in extractHvxSubvectorPred()
H A DHexagonISelLowering.cpp2964 unsigned Rep = 8 / VecTy.getVectorNumElements(); in LowerBUILD_VECTOR() local
2967 Rs[i] = DAG.getSelect(dl, MVT::i32, Ops[i/Rep], S, Z); in LowerBUILD_VECTOR()
/freebsd-14.2/contrib/tzdata/
H A Dzone.tab134 CD -0418+01518 Africa/Kinshasa Dem. Rep. of Congo (west)
135 CD -1140+02728 Africa/Lubumbashi Dem. Rep. of Congo (east)
H A Dsouthamerica208 # Hora de verano para la República Argentina
372 # According to news reports from El Diario de la República Province San
2068 # published today in the "Gaceta Oficial de la República Bolivariana
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h1212 LargeRep Rep = {static_cast<BucketT *>(allocate_buffer( in allocateBuckets() local
1215 return Rep; in allocateBuckets()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h3208 if (auto Rep = dyn_cast<VPReplicateRecipe>(Def)) in isUniformAfterVectorization() local
3209 return Rep->isUniform(); in isUniformAfterVectorization()

12