| /NextBSD/contrib/llvm/tools/clang/include/clang/Serialization/ |
| HD | ContinuousRangeMap.h | 46 Representation Rep; variable 65 if (!Rep.empty() && Rep.back() == Val) in insert() 68 assert((Rep.empty() || Rep.back().first < Val.first) && in insert() 70 Rep.push_back(Val); in insert() 74 iterator I = std::lower_bound(Rep.begin(), Rep.end(), Val, Compare()); in insertOrReplace() 75 if (I != Rep.end() && I->first == Val.first) { in insertOrReplace() 80 Rep.insert(I, Val); in insertOrReplace() 86 iterator begin() { return Rep.begin(); } in begin() 87 iterator end() { return Rep.end(); } in end() 88 const_iterator begin() const { return Rep.begin(); } in begin() [all …]
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | AutoUpgrade.cpp | 336 Value *Rep; in UpgradeIntrinsicCall() local 340 Rep = Builder.CreateICmpEQ(CI->getArgOperand(0), CI->getArgOperand(1), in UpgradeIntrinsicCall() 343 Rep = Builder.CreateSExt(Rep, CI->getType(), ""); in UpgradeIntrinsicCall() 346 Rep = Builder.CreateICmpSGT(CI->getArgOperand(0), CI->getArgOperand(1), in UpgradeIntrinsicCall() 349 Rep = Builder.CreateSExt(Rep, CI->getType(), ""); in UpgradeIntrinsicCall() 419 Rep = in UpgradeIntrinsicCall() 426 Rep = Builder.CreateCall(CRC32, {Trunc0, CI->getArgOperand(1)}); in UpgradeIntrinsicCall() 427 Rep = Builder.CreateZExt(Rep, CI->getType(), ""); in UpgradeIntrinsicCall() 437 Rep = UndefValue::get(VecTy); in UpgradeIntrinsicCall() 439 Rep = Builder.CreateInsertElement(Rep, Load, in UpgradeIntrinsicCall() [all …]
|
| /NextBSD/crypto/heimdal/lib/asn1/ |
| HD | setchgpw2.asn1 | 36 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 …]
|
| /NextBSD/contrib/libc++/include/ |
| D | condition_variable | 49 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,
|
| D | shared_mutex | 57 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); 395 template <class Rep, class Period> 396 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
| D | mutex | 65 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); 124 template <class Rep, class Period> 125 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time); 137 template <class Rep, class Period> 138 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
| D | chrono | 22 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> {}; 29 template <class Rep> 33 static constexpr Rep zero(); 34 static constexpr Rep max(); 35 static constexpr Rep min(); 40 template <class Rep, class Period = ratio<1>> 43 static_assert(!__is_duration<Rep>::value, "A duration representation can not be a duration"); 47 typedef Rep rep; [all …]
|
| D | future | 168 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 …]
|
| D | thread | 79 template <class Rep, class Period> 80 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | ScopeInfo.h | 263 llvm::PointerIntPair<const Expr *, 1, bool> Rep; variable 265 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy() 267 const Expr *getUseExpr() const { return Rep.getPointer(); } in getUseExpr() 268 bool isUnsafe() const { return Rep.getInt(); } in isUnsafe() 269 void markSafe() { Rep.setInt(false); } in markSafe() 272 return Rep == Other.Rep;
|
| HD | DeclSpec.h | 623 unsigned &DiagID, ParsedType Rep, 626 unsigned &DiagID, Decl *Rep, bool Owned, 630 unsigned &DiagID, ParsedType Rep, 634 unsigned &DiagID, Decl *Rep, bool Owned, 638 unsigned &DiagID, Expr *Rep, 650 void UpdateDeclRep(Decl *Rep) { in UpdateDeclRep() argument 652 DeclRep = Rep; in UpdateDeclRep() 654 void UpdateTypeRep(ParsedType Rep) { in UpdateTypeRep() argument 656 TypeRep = Rep; in UpdateTypeRep() 658 void UpdateExprRep(Expr *Rep) { in UpdateExprRep() argument [all …]
|
| /NextBSD/share/doc/psd/15.yacc/ |
| HD | ref.bib | 37 %R Comp. Sci. Tech. Rep. No. 65 52 %R Comp. Sci. Tech. Rep. No. 17 66 %R Comp. Sci. Tech. Rep. No. 39
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | DeclSpec.cpp | 607 ParsedType Rep, in SetTypeSpecType() argument 609 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Policy); in SetTypeSpecType() 616 ParsedType Rep, in SetTypeSpecType() argument 619 assert(Rep && "no type provided!"); in SetTypeSpecType() 626 TypeRep = Rep; in SetTypeSpecType() 636 Expr *Rep, in SetTypeSpecType() argument 639 assert(Rep && "no expression provided!"); in SetTypeSpecType() 646 ExprRep = Rep; in SetTypeSpecType() 656 Decl *Rep, bool Owned, in SetTypeSpecType() argument 658 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy); in SetTypeSpecType() [all …]
|
| HD | SemaExprMember.cpp | 200 NamedDecl *Rep, in diagnoseInstanceReference() argument 207 Rep = Rep->getUnderlyingDecl(); in diagnoseInstanceReference() 212 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext()); in diagnoseInstanceReference() 215 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep); in diagnoseInstanceReference()
|
| /NextBSD/contrib/libc++/include/experimental/ |
| D | chrono | 27 template <class Rep> constexpr bool treat_as_floating_point_v 28 = treat_as_floating_point<Rep>::value;
|
| /NextBSD/usr.bin/calendar/calendars/pt_BR.ISO8859-1/ |
| HD | calendar.holidays | 22 11/15 Dia da proclama��o da Rep�blica
|
| /NextBSD/usr.bin/calendar/calendars/pt_BR.UTF-8/ |
| HD | calendar.holidays | 22 11/15 Dia da proclamação da República
|
| /NextBSD/share/doc/psd/01.cacm/ |
| HD | ref.bib | 14 %R Comp. Sci. Tech. Rep. No. 17
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | DenseMap.h | 978 LargeRep Rep = { in allocateBuckets() local 981 return Rep; in allocateBuckets()
|
| /NextBSD/contrib/tzdata/ |
| HD | zone.tab | 137 CD -0418+01518 Africa/Kinshasa west Dem. Rep. of Congo 138 CD -1140+02728 Africa/Lubumbashi east Dem. Rep. of Congo
|
| HD | africa | 930 Link Africa/Maputo Africa/Lubumbashi # E Dem. Rep. of Congo 970 Link Africa/Lagos Africa/Brazzaville # Rep. of the Congo 972 Link Africa/Lagos Africa/Kinshasa # Dem. Rep. of the Congo (west)
|
| HD | southamerica | 228 # Hora de verano para la República Argentina 396 # According to news reports from El Diario de la República Province San 1740 # published today in the "Gaceta Oficial de la República Bolivariana
|
| HD | europe | 1563 # The Regulations of the Cabinet of Ministers of the Rep. of Latvia of
|
| /NextBSD/contrib/llvm/lib/Target/Hexagon/ |
| HD | HexagonCommonGEP.cpp | 637 GepNode *Rep = F->second; in common() local 638 N->Parent = Rep; in common()
|
| /NextBSD/usr.bin/calendar/calendars/ |
| HD | calendar.holiday | 211 06/03* Bank Holiday in Rep. of Ireland 552 12/26 Bank Holiday in Canada, Rep. of Ireland, and UK
|