Home
last modified time | relevance | path

Searched refs:UT (Results 1 – 25 of 58) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_dispatch.h71 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 Dkmp_dispatch.cpp730 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 Dkmp_sched.cpp97 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 Dkmp_collapse.cpp532 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 DDiagnosticOptions.h49 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 DOrcError.cpp85 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 DDiagnosticOptions.cpp20 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 DMemoryFlags.h217 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 DNonNullParamChecker.cpp151 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 DDWARFDebugFrame.cpp215 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 DSimpleRemoteEPCServer.cpp93 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 DSimpleRemoteEPC.cpp149 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 DMachOPlatform.cpp65 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 Detcetera41 # the abbreviation "-04" and corresponds to 4 hours behind UT
43 # mean 4 hours ahead of UT (i.e. east of Greenwich).
H A DNEWS961 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 Dmacho_platform.cpp416 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 DQualTypeNames.cpp452 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 DREADME.refclocks36 ONCORE 30 /* Motorola UT Oncore GPS */
/freebsd-14.2/contrib/tzcode/
H A DNEWS819 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 DInstCombineLoadStoreAlloca.cpp1138 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 DABIInfoImpl.cpp143 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 Dmech.cat558 AAUUTTHHOORRSS
/freebsd-14.2/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DDwarf.cpp611 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 DSValBuilder.cpp1082 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 DRISCVVEmitter.cpp367 auto UT = TypeCache.computeType( in createHeader() local
372 printType(*UT); in createHeader()

123