Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DUnsignedOrNone.h23 constexpr UnsignedOrNone(std::nullopt_t) : Rep(0) {} in UnsignedOrNone()
24 UnsignedOrNone(unsigned Val) : Rep(Val + 1) { assert(operator bool()); } in UnsignedOrNone()
27 constexpr static UnsignedOrNone fromInternalRepresentation(unsigned Rep) { in fromInternalRepresentation()
28 return {std::nullopt, Rep}; in fromInternalRepresentation()
30 constexpr unsigned toInternalRepresentation() const { return Rep; } in toInternalRepresentation()
32 explicit constexpr operator bool() const { return Rep != 0; }
35 return Rep - 1;
39 return LHS.Rep == RHS.Rep;
42 return LHS.Rep != RHS.Rep;
46 constexpr UnsignedOrNone(std::nullopt_t, unsigned Rep) : Rep(Rep) {}; in UnsignedOrNone()
[all …]
/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.cpp2148 Value *Rep = in upgradeX86MaskedShift() local
2150 return emitX86Select(Builder, CI.getArgOperand(3), Rep, CI.getArgOperand(2)); in upgradeX86MaskedShift()
2177 CallBase &CI, Value *&Rep) { in upgradeAVX512MaskToSelect() argument
2406 Rep = Builder.CreateIntrinsic(IID, Args); in upgradeAVX512MaskToSelect()
2408 Rep = emitX86Select(Builder, CI.getArgOperand(NumArgs - 1), Rep, in upgradeAVX512MaskToSelect()
2426 Value *Rep = nullptr; in upgradeNVVMIntrinsicCall() local
2433 Rep = Builder.CreateSelect(Cmp, Arg, Neg, "abs"); in upgradeNVVMIntrinsicCall()
2440 Rep = Builder.CreateBitCast(Abs, CI->getType()); in upgradeNVVMIntrinsicCall()
2444 Rep = Builder.CreateUnaryIntrinsic(IID, CI->getArgOperand(0)); in upgradeNVVMIntrinsicCall()
2449 Rep = Builder.CreateAtomicRMW(AtomicRMWInst::FAdd, Ptr, Val, MaybeAlign(), in upgradeNVVMIntrinsicCall()
[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/libcxx/include/__cxx03/
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 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 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/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanUtils.h62 if (auto *Rep = dyn_cast<VPReplicateRecipe>(VPV)) { in isSingleScalar() local
63 const VPRegionBlock *RegionOfR = Rep->getParent()->getParent(); in isSingleScalar()
69 return Rep->isSingleScalar() || (PreservesUniformity(Rep->getOpcode()) && in isSingleScalar()
70 all_of(Rep->operands(), isSingleScalar)); in isSingleScalar()
/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/contrib/llvm-project/llvm/include/llvm/Support/
H A DChrono.h150 template <typename Rep, typename Period>
151 struct format_provider<std::chrono::duration<Rep, Period>> {
153 typedef std::chrono::duration<Rep, Period> Dur;
154 typedef std::conditional_t<std::chrono::treat_as_floating_point<Rep>::value,
/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.cpp760 ParsedType Rep, in SetTypeSpecType() argument
762 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Policy); in SetTypeSpecType()
769 ParsedType Rep, in SetTypeSpecType() argument
772 assert(Rep && "no type provided!"); in SetTypeSpecType()
781 TypeRep = Rep; in SetTypeSpecType()
789 QualType QT = Rep.get(); in SetTypeSpecType()
800 Expr *Rep, in SetTypeSpecType() argument
803 assert(Rep && "no expression provided!"); in SetTypeSpecType()
812 ExprRep = Rep; in SetTypeSpecType()
822 Decl *Rep, bool Owned, in SetTypeSpecType() argument
[all …]
H A DSemaExprMember.cpp223 NamedDecl *Rep, in diagnoseInstanceReference() argument
230 Rep = Rep->getUnderlyingDecl(); in diagnoseInstanceReference()
235 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext()); in diagnoseInstanceReference()
240 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep); in diagnoseInstanceReference()
274 if (const auto *Tpl = dyn_cast<FunctionTemplateDecl>(Rep)) in diagnoseInstanceReference()
275 Rep = Tpl->getTemplatedDecl(); in diagnoseInstanceReference()
276 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.h735 unsigned &DiagID, ParsedType Rep,
738 unsigned &DiagID, TypeResult Rep, in SetTypeSpecType() argument
740 if (Rep.isInvalid()) in SetTypeSpecType()
742 return SetTypeSpecType(T, Loc, PrevSpec, DiagID, Rep.get(), Policy); in SetTypeSpecType()
745 unsigned &DiagID, Decl *Rep, bool Owned,
749 unsigned &DiagID, ParsedType Rep,
753 unsigned &DiagID, Decl *Rep, bool Owned,
756 unsigned &DiagID, TemplateIdAnnotation *Rep,
760 unsigned &DiagID, Expr *Rep,
783 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))>;

12