| /freebsd-14.2/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_dispatch.h | 71 UT count; // unsigned 76 UT tc; // unsigned 116 UT tc; // unsigned 294 static UT __kmp_wait(volatile UT *spinner, UT checker, in __kmp_wait() 298 UT check = checker; in __kmp_wait() 300 kmp_uint32 (*f)(UT, UT) = pred; in __kmp_wait() 302 UT r; in __kmp_wait() 351 UT lower; in __kmp_dispatch_deo() 377 traits_t<UT>::spec, traits_t<UT>::spec); in __kmp_dispatch_deo() 391 traits_t<UT>::spec, traits_t<UT>::spec); in __kmp_dispatch_deo() [all …]
|
| H A D | kmp_dispatch.cpp | 730 UT cross; in __kmp_dispatch_init_algorithm() 1152 traits_t<ST>::spec, traits_t<UT>::spec, traits_t<UT>::spec, in __kmp_dispatch_init() 1153 traits_t<UT>::spec, traits_t<UT>::spec, traits_t<T>::spec, in __kmp_dispatch_init() 1282 traits_t<UT>::spec, traits_t<UT>::spec, traits_t<UT>::spec); in __kmp_dispatch_finish_chunk() 1304 traits_t<UT>::spec, traits_t<UT>::spec, traits_t<UT>::spec, in __kmp_dispatch_finish_chunk() 1488 traits_t<UT>::spec, traits_t<UT>::spec); in __kmp_dispatch_next_algorithm() 1511 UT count; in __kmp_dispatch_next_algorithm() 1903 UT span; in __kmp_dispatch_next_algorithm() 1940 UT chunkIdx; in __kmp_dispatch_next_algorithm() 2034 UT index; in __kmp_dispatch_next_algorithm() [all …]
|
| H A D | kmp_sched.cpp | 97 UT trip_count; in __kmp_for_static_init() 323 UT extras = trip_count % nth; in __kmp_for_static_init() 360 UT nchunks; in __kmp_for_static_init() 363 else if ((UT)chunk > trip_count) in __kmp_for_static_init() 365 nchunks = (trip_count) / (UT)chunk + (trip_count % (UT)chunk ? 1 : 0); in __kmp_for_static_init() 491 UT trip_count; in __kmp_dist_for_static_init() 572 UT chunkD = trip_count / nteams; in __kmp_dist_for_static_init() 573 UT extras = trip_count % nteams; in __kmp_dist_for_static_init() 641 UT chunkL = trip_count / nth; in __kmp_dist_for_static_init() 642 UT extras = trip_count % nth; in __kmp_dist_for_static_init() [all …]
|
| H A D | kmp_collapse.cpp | 532 typedef typename traits_t<T>::unsigned_t UT; in kmp_calc_span_lessoreq_XX() typedef 586 (static_cast<UT>(bbounds.ub0 - bbounds.lb0)) % bbounds.step; // abs? in kmp_calc_span_lessoreq_XX() 596 typedef typename traits_t<T>::unsigned_t UT; in kmp_calc_span_greateroreq_XX() typedef 651 (static_cast<UT>(bbounds.ub0 - bbounds.lb0)) % bbounds.step; // abs? in kmp_calc_span_greateroreq_XX()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticOptions.h | 49 using UT = std::underlying_type_t<DiagnosticLevelMask>; variable 50 return static_cast<DiagnosticLevelMask>(~static_cast<UT>(M)); 55 using UT = std::underlying_type_t<DiagnosticLevelMask>; variable 57 static_cast<UT>(LHS) | static_cast<UT>(RHS)); 62 using UT = std::underlying_type_t<DiagnosticLevelMask>; variable 64 static_cast<UT>(LHS) & static_cast<UT>(RHS));
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/ |
| H A D | OrcError.cpp | 85 typedef std::underlying_type_t<OrcErrorCode> UT; in orcError() typedef 86 return std::error_code(static_cast<UT>(ErrCode), getOrcErrCat()); in orcError() 108 typedef std::underlying_type_t<OrcErrorCode> UT; in convertToErrorCode() typedef 109 return std::error_code(static_cast<UT>(OrcErrorCode::JITSymbolNotFound), in convertToErrorCode()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | DiagnosticOptions.cpp | 20 using UT = std::underlying_type_t<DiagnosticLevelMask>; in operator <<() typedef 21 return Out << static_cast<UT>(M); in operator <<()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | MemoryFlags.h | 217 using UT = std::underlying_type_t<orc::MemProt>; 218 return DenseMapInfo<UT>::getHashValue(static_cast<UT>(Val));
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NonNullParamChecker.cpp | 151 const RecordType *UT = T->getAsUnionType(); in checkPreCall() local 152 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) in checkPreCall()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugFrame.cpp | 215 UnwindTable UT; in create() local 218 UT.EndAddress = Fde->getInitialLocation() + Fde->getAddressRange(); in create() 219 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr)) in create() 224 if (Error FdeError = UT.parseRows(Fde->cfis(), Row, &InitialLocs)) in create() 230 UT.Rows.push_back(Row); in create() 231 return UT; in create() 239 UnwindTable UT; in create() local 241 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr)) in create() 247 UT.Rows.push_back(Row); in create() 248 return UT; in create()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
| H A D | SimpleRemoteEPCServer.cpp | 93 using UT = std::underlying_type_t<SimpleRemoteEPCOpcode>; in handleMessage() typedef 94 if (static_cast<UT>(OpC) > static_cast<UT>(SimpleRemoteEPCOpcode::LastOpC)) in handleMessage()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | SimpleRemoteEPC.cpp | 149 using UT = std::underlying_type_t<SimpleRemoteEPCOpcode>; in handleMessage() typedef 150 if (static_cast<UT>(OpC) > static_cast<UT>(SimpleRemoteEPCOpcode::LastOpC)) in handleMessage()
|
| H A D | MachOPlatform.cpp | 65 using UT = std::underlying_type_t<MachOPlatform::MachOExecutorSymbolFlags>; typedef in llvm::orc::shared::SPSSerializationTraits 69 return sizeof(UT); in size() 74 return SPSArgList<UT>::serialize(OB, static_cast<UT>(SF)); in serialize() 79 UT Tmp; in deserialize() 80 if (!SPSArgList<UT>::deserialize(IB, Tmp)) in deserialize()
|
| /freebsd-14.2/contrib/tzdata/ |
| H A D | etcetera | 41 # the abbreviation "-04" and corresponds to 4 hours behind UT 43 # mean 4 hours ahead of UT (i.e. east of Greenwich).
|
| H A D | NEWS | 961 with UT offsets that are unspecified due to -r truncation. 1155 which contains leap seconds, and only if the UT offset is 2046 adjusted westward by 7 seconds, from UT-03:44:44 to UT-03:44:51, to 2235 Summer Time (UT +01) in summer. This change does not affect UT 2341 Madras local time (UT +052110) in 1870, then to IST (UT +0530) in 2359 Add 7 s to the UT offset in Asia/Yangon before 1920. 2628 The 'Theory' file now documents UT. 3304 Santiago observed DST (UT -03) from 1946-07-15 through 3459 and is more careful to distinguish UT from UTC. 3593 Turks & Caicos is switching from US eastern time to UT -04 [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | macho_platform.cpp | 416 using UT = std::underlying_type_t< typedef in __orc_rt::SPSSerializationTraits 422 return sizeof(UT); in size() 428 return SPSArgList<UT>::serialize(OB, static_cast<UT>(SF)); in serialize() 434 UT Tmp; in deserialize() 435 if (!SPSArgList<UT>::deserialize(IB, Tmp)) in deserialize()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | QualTypeNames.cpp | 452 if (const auto *UT = QT->getAs<UsingType>()) { in getFullyQualifiedType() local 453 QT = Ctx.getQualifiedType(UT->getUnderlyingType(), PrefixQualifiers); in getFullyQualifiedType()
|
| /freebsd-14.2/contrib/ntp/ |
| H A D | README.refclocks | 36 ONCORE 30 /* Motorola UT Oncore GPS */
|
| /freebsd-14.2/contrib/tzcode/ |
| H A D | NEWS | 819 when local time and UT cannot be determined for a timestamp. 858 with UT offsets that are unspecified due to -r truncation. 1052 which contains leap seconds, and only if the UT offset is 1943 adjusted westward by 7 seconds, from UT-03:44:44 to UT-03:44:51, to 2132 Summer Time (UT +01) in summer. This change does not affect UT 2238 Madras local time (UT +052110) in 1870, then to IST (UT +0530) in 2256 Add 7 s to the UT offset in Asia/Yangon before 1920. 2525 The 'Theory' file now documents UT. 3201 Santiago observed DST (UT -03) from 1946-07-15 through 3356 and is more careful to distinguish UT from UTC. [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 1138 auto *UT = cast<VectorType>(U->getType()); in likeBitCastFromVector() local 1142 if (DL.getTypeStoreSizeInBits(UT) != DL.getTypeStoreSizeInBits(VT)) { in likeBitCastFromVector() 1146 if (AT->getNumElements() != cast<FixedVectorType>(UT)->getNumElements()) in likeBitCastFromVector() 1150 if (ST->getNumElements() != cast<FixedVectorType>(UT)->getNumElements()) in likeBitCastFromVector() 1153 if (EltT != UT->getElementType()) in likeBitCastFromVector()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ABIInfoImpl.cpp | 143 if (const RecordType *UT = Ty->getAsUnionType()) { in useFirstFieldIfTransparentUnion() local 144 const RecordDecl *UD = UT->getDecl(); in useFirstFieldIfTransparentUnion()
|
| /freebsd-14.2/crypto/heimdal/lib/gssapi/mech/ |
| H A D | mech.cat5 | 58 AAUUTTHHOORRSS
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/BinaryFormat/ |
| H A D | Dwarf.cpp | 611 StringRef llvm::dwarf::UnitTypeString(unsigned UT) { in UnitTypeString() argument 612 switch (UT) { in UnitTypeString()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 1082 const bool UT = TTy.isUnsigned(); in simplifySymbolCast() local 1085 if (((WT > WR) && (UR || !UT)) || ((WT == WR) && (UT == UR))) in simplifySymbolCast()
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | RISCVVEmitter.cpp | 367 auto UT = TypeCache.computeType( in createHeader() local 372 printType(*UT); in createHeader()
|