/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_dispatch.h | 69 typedef typename traits_t<T>::unsigned_t UT; typedef 71 UT count; // unsigned 76 UT tc; // unsigned 79 UT ordered_lower; // unsigned 80 UT ordered_upper; // unsigned 97 UT pchunks; // total number of chunks for processes with p-core 98 UT num_procs_with_pcore; // number of threads with p-core 111 typedef typename traits_t<T>::unsigned_t UT; 116 UT tc; // unsigned 123 UT coun 105 typedef typename traits_t<T>::unsigned_t UT; global() typedef 153 typedef typename traits_t<T>::unsigned_t UT; global() typedef 166 typedef typename traits_t<T>::unsigned_t UT; global() typedef 289 __kmp_wait(volatile UT * spinner,UT checker,kmp_uint32 (* pred)(UT,UT)USE_ITT_BUILD_ARG (void * obj)) __kmp_wait() argument 490 typedef typename traits_t<T>::unsigned_t UT; __kmp_dispatch_guided_remaining() typedef [all...] |
H A D | kmp_dispatch.cpp | 193 typedef typename traits_t<T>::unsigned_t UT; in __kmp_dispatch_init_algorithm() typedef 391 tc = (UT)(lb - ub) / (-st) + 1; in __kmp_dispatch_init_algorithm() 399 tc = (UT)(ub - lb) / st + 1; in __kmp_dispatch_init_algorithm() 730 UT cross; in __kmp_dispatch_init_algorithm() 759 UT left, right, mid; in __kmp_dispatch_init_algorithm() 767 p = __kmp_pow<UT>(x, right); in __kmp_dispatch_init_algorithm() 782 if (__kmp_pow<UT>(x, mid) > target) { in __kmp_dispatch_init_algorithm() 791 KMP_ASSERT(cross && __kmp_pow<UT>(x, cross - 1) > target && in __kmp_dispatch_init_algorithm() 792 __kmp_pow<UT>(x, cross) <= target); in __kmp_dispatch_init_algorithm() 965 typedef typename traits_t<T>::unsigned_t UT; in __kmp_dispatch_init() typedef [all …]
|
H A D | kmp_sched.cpp | 92 typedef typename traits_t<T>::unsigned_t UT; in __kmp_for_static_init() typedef 98 UT trip_count; in __kmp_for_static_init() 286 trip_count = (UT)(*pupper - *plower) / incr + 1; in __kmp_for_static_init() 289 trip_count = (UT)(*plower - *pupper) / (-incr) + 1; in __kmp_for_static_init() 325 UT small_chunk = trip_count / nth; in __kmp_for_static_init() 326 UT extras = trip_count % nth; in __kmp_for_static_init() 363 UT nchunks; in __kmp_for_static_init() 367 else if ((UT)chunk > trip_count) in __kmp_for_static_init() 369 nchunks = (trip_count) / (UT)chunk + (trip_count % (UT)chunk ? 1 : 0); in __kmp_for_static_init() 392 UT span = (trip_count + nth - 1) / nth; in __kmp_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/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/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/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/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/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/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
H A D | SimpleRemoteEPCServer.cpp | 93 using UT = std::underlying_type_t<SimpleRemoteEPCOpcode>; in handleMessage() 94 if (static_cast<UT>(OpC) > static_cast<UT>(SimpleRemoteEPCOpcode::LastOpC)) in handleMessage() 91 using UT = std::underlying_type_t<SimpleRemoteEPCOpcode>; handleMessage() typedef
|
/freebsd/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 | 642 time or in UT, not the usual case of local time. This occurs when 897 when local time and UT cannot be determined for a timestamp. 936 with UT offsets that are unspecified due to -r truncation. 1130 which contains leap seconds, and only if the UT offset is 1136 through 59; their UT offset (tm_gmtoff) is the same as before. 1137 Here is how the fix affects timestamps in a timezone with UT 1947 does not affect UT offsets, only time zone abbreviations and the 2020 Additionally, Uruguay's pre-standard-time UT offset has been 2021 adjusted westward by 7 seconds, from UT-03:44:44 to UT [all...] |
H A D | southamerica | 30 # integer hour and minute UT offsets. Although earlier editions used 1100 # 1890 and rounds its UT offset to 70W40; guess that in practice this 1804 # resulting in UT-04. Assume the corresponding LMT of UT-03:44:51 (given on 1811 # by 44 minutes 51 seconds (UT-03) "from 30 September to 31 March", and by 14 1812 # minutes 51 seconds (UT-03:30) "the rest of the year"; a message from the 1815 # 24:00. This effectively established standard time at UT-03:30 with 30 1818 # provisions which oppose" it, resulting in year-round UT-03:30; a Resolución 1834 # National Defense. It reinstituted a DST of 30 minutes (to UT-03) "from the 1879 # UT [all...] |
H A D | asia | 55 # and +0330 for integer hour and minute UT offsets. Although earlier 482 # to use UT+8. As the Shanghai radio station (and I presume the 497 # * "From the end of the 19th century" it changed to UT+8. 503 # at first only in coastal areas observing UT+8. 504 # * During WWII all of China was in theory was at UT+7. In practice 507 # * Japanese-occupied Manchuria was at UT+9, i.e., Japan time. 511 # * The People's Liberation Army used UT+8 during the civil war. 517 # Xujiahui Observatory was under French control and stuck with UT +08. 526 # Changbai Time ("Long-white Time", Long-white = Heilongjiang area) UT +08:30 530 # Zhongyuan Time ("Central plain Time") UT [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | SimpleRemoteEPC.cpp | 166 using UT = std::underlying_type_t<SimpleRemoteEPCOpcode>; in handleMessage() typedef 167 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/contrib/tzcode/ |
H A D | NEWS | 564 time or in UT, not the usual case of local time. This occurs when 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 1058 through 59; their UT offset (tm_gmtoff) is the same as before. 1059 Here is how the fix affects timestamps in a timezone with UT 1869 does not affect UT offsets, only time zone abbreviations and the 1942 Additionally, Uruguay's pre-standard-time UT offset has been 1943 adjusted westward by 7 seconds, from UT-03:44:44 to UT [all...] |
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | QualTypeNames.cpp | 453 if (const auto *UT = QT->getAs<UsingType>()) { in getFullyQualifiedType() local 454 QT = Ctx.getQualifiedType(UT->getUnderlyingType(), PrefixQualifiers); in getFullyQualifiedType()
|
/freebsd/contrib/ntp/ |
H A D | README.refclocks | 36 ONCORE 30 /* Motorola UT Oncore GPS */
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineLoadStoreAlloca.cpp | 1137 auto *UT = cast<VectorType>(U->getType()); in likeBitCastFromVector() local 1141 if (DL.getTypeStoreSizeInBits(UT) != DL.getTypeStoreSizeInBits(VT)) { in likeBitCastFromVector() 1145 if (AT->getNumElements() != cast<FixedVectorType>(UT)->getNumElements()) in likeBitCastFromVector() 1149 if (ST->getNumElements() != cast<FixedVectorType>(UT)->getNumElements()) in likeBitCastFromVector() 1152 if (EltT != UT->getElementType()) in likeBitCastFromVector()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | ABIInfoImpl.cpp | 146 if (const RecordType *UT = Ty->getAsUnionType()) { in useFirstFieldIfTransparentUnion() local 147 const RecordDecl *UD = UT->getDecl(); in useFirstFieldIfTransparentUnion()
|
/freebsd/crypto/heimdal/lib/gssapi/mech/ |
H A D | mech.cat5 | 58 AAUUTTHHOORRSS
|
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
H A D | Dwarf.cpp | 653 StringRef llvm::dwarf::UnitTypeString(unsigned UT) { in UnitTypeString() argument 654 switch (UT) { in UnitTypeString()
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | RISCVVEmitter.cpp | 365 auto UT = TypeCache.computeType( in createHeader() local 370 printType(*UT); in createHeader()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CallEvent.cpp | 394 const RecordType *UT = T->getAsUnionType(); in isTransparentUnion() local 395 return UT && UT->getDecl()->hasAttr<TransparentUnionAttr>(); in isTransparentUnion()
|