Home
last modified time | relevance | path

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

12

/freebsd/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()
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 …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp1971 Value *Rep = Builder.CreateCall(Intrin, in upgradeX86MaskedShift() local
1973 return emitX86Select(Builder, CI.getArgOperand(3), Rep, CI.getArgOperand(2)); in upgradeX86MaskedShift()
2000 CallBase &CI, Value *&Rep) { in upgradeAVX512MaskToSelect() argument
2229 Rep = Builder.CreateCall(Intrinsic::getDeclaration(CI.getModule(), IID), in upgradeAVX512MaskToSelect()
2232 Rep = emitX86Select(Builder, CI.getArgOperand(NumArgs - 1), Rep, in upgradeAVX512MaskToSelect()
2251 Value *Rep = nullptr; in upgradeX86IntrinsicCall() local
2321 Rep = Builder.CreateICmp(CmpEq ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_SGT, in upgradeX86IntrinsicCall()
2323 Rep = Builder.CreateSExt(Rep, CI->getType(), ""); in upgradeX86IntrinsicCall()
2330 Rep = Builder.CreateZExt(CI->getArgOperand(0), ExtTy); in upgradeX86IntrinsicCall()
2331 Rep = Builder.CreateVectorSplat(NumElts, Rep); in upgradeX86IntrinsicCall()
[all …]
/freebsd/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/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/contrib/llvm-project/libcxx/include/
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 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> {};
32 template <class Rep> inline constexpr bool treat_as_floating_point_v
33 = treat_as_floating_point<Rep>::value; // C++17
35 template <class Rep>
39 static constexpr Rep zero(); // noexcept in C++20
40 static constexpr Rep max(); // noexcept in C++20
41 static constexpr Rep min(); // noexcept in C++20
46 template <class Rep, class Period = ratio<1>>
[all …]
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/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/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp757 ParsedType Rep, in SetTypeSpecType() argument
759 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Policy); in SetTypeSpecType()
766 ParsedType Rep, in SetTypeSpecType() argument
769 assert(Rep && "no type provided!"); in SetTypeSpecType()
778 TypeRep = Rep; in SetTypeSpecType()
786 QualType QT = Rep.get(); in SetTypeSpecType()
797 Expr *Rep, in SetTypeSpecType() argument
800 assert(Rep && "no expression provided!"); in SetTypeSpecType()
809 ExprRep = Rep; in SetTypeSpecType()
819 Decl *Rep, bool Owned, in SetTypeSpecType() argument
[all …]
H A DSemaExprMember.cpp225 NamedDecl *Rep, in diagnoseInstanceReference() argument
232 Rep = Rep->getUnderlyingDecl(); in diagnoseInstanceReference()
237 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext()); in diagnoseInstanceReference()
242 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep); in diagnoseInstanceReference()
276 if (const auto *Tpl = dyn_cast<FunctionTemplateDecl>(Rep)) in diagnoseInstanceReference()
277 Rep = Tpl->getTemplatedDecl(); in diagnoseInstanceReference()
278 const auto *Callee = cast<CXXMethodDecl>(Rep); in diagnoseInstanceReference()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h356 llvm::PointerIntPair<const Expr *, 1, bool> Rep; variable
359 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy()
361 const Expr *getUseExpr() const { return Rep.getPointer(); } in getUseExpr()
362 bool isUnsafe() const { return Rep.getInt(); } in isUnsafe()
363 void markSafe() { Rep.setInt(false); } in markSafe()
366 return Rep == Other.Rep;
H A DDeclSpec.h733 unsigned &DiagID, ParsedType Rep,
736 unsigned &DiagID, TypeResult Rep, in SetTypeSpecType() argument
738 if (Rep.isInvalid()) in SetTypeSpecType()
740 return SetTypeSpecType(T, Loc, PrevSpec, DiagID, Rep.get(), Policy); in SetTypeSpecType()
743 unsigned &DiagID, Decl *Rep, bool Owned,
747 unsigned &DiagID, ParsedType Rep,
751 unsigned &DiagID, Decl *Rep, bool Owned,
754 unsigned &DiagID, TemplateIdAnnotation *Rep,
758 unsigned &DiagID, Expr *Rep,
781 void UpdateDeclRep(Decl *Rep) { in UpdateDeclRep() argument
[all …]
/freebsd/share/doc/psd/01.cacm/
H A Dref.bib13 %R Comp. Sci. Tech. Rep. No. 17
/freebsd/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()
1316 assert(isPowerOf2_32(Rep) && HwLen % Rep == 0); in extractHvxSubvectorPred() local
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()
1341 for (unsigned j = 0; j != Rep; ++j) in extractHvxSubvectorPred()
1336 unsigned Rep = 8 / ResLen; extractHvxSubvectorPred() local
H A DHexagonISelLowering.cpp2981 unsigned Rep = 8 / VecTy.getVectorNumElements(); in LowerBUILD_VECTOR() local
2984 Rs[i] = DAG.getSelect(dl, MVT::i32, Ops[i/Rep], S, Z); in LowerBUILD_VECTOR()
/freebsd/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 Dsouthamerica
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h1228 LargeRep Rep = {static_cast<BucketT *>(allocate_buffer( in allocateBuckets() local
1231 return Rep; in allocateBuckets()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h3815 if (auto Rep = dyn_cast<VPReplicateRecipe>(Def)) in isUniformAfterVectorization() local
3816 return Rep->isUniform(); in isUniformAfterVectorization()

12