Home
last modified time | relevance | path

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

12345

/external/llvm-project/openmp/runtime/src/
Dkmp_dispatch.h69 typedef typename traits_t<T>::unsigned_t UT; typedef
71 UT count; // unsigned
76 UT tc; // unsigned
94 UT ordered_lower; // unsigned
95 UT ordered_upper; // unsigned
106 typedef typename traits_t<T>::unsigned_t UT; typedef
111 UT tc; // unsigned
118 UT count; // unsigned
120 UT ordered_lower; // unsigned
121 UT ordered_upper; // unsigned
[all …]
Dkmp_dispatch.cpp113 typedef typename traits_t<T>::unsigned_t UT; in __kmp_dispatch_init_algorithm() typedef
309 tc = (UT)(lb - ub) / (-st) + 1; in __kmp_dispatch_init_algorithm()
317 tc = (UT)(ub - lb) / st + 1; in __kmp_dispatch_init_algorithm()
544 UT cross; in __kmp_dispatch_init_algorithm()
573 UT left, right, mid; in __kmp_dispatch_init_algorithm()
581 p = __kmp_pow<UT>(x, right); in __kmp_dispatch_init_algorithm()
596 if (__kmp_pow<UT>(x, mid) > target) { in __kmp_dispatch_init_algorithm()
605 KMP_ASSERT(cross && __kmp_pow<UT>(x, cross - 1) > target && in __kmp_dispatch_init_algorithm()
606 __kmp_pow<UT>(x, cross) <= target); in __kmp_dispatch_init_algorithm()
771 typedef typename traits_t<T>::unsigned_t UT; in __kmp_dispatch_init() typedef
[all …]
Dkmp_sched.cpp86 typedef typename traits_t<T>::unsigned_t UT; in __kmp_for_static_init() typedef
92 UT trip_count; in __kmp_for_static_init()
274 trip_count = (UT)(*pupper - *plower) / incr + 1; in __kmp_for_static_init()
276 trip_count = (UT)(*plower - *pupper) / (-incr) + 1; in __kmp_for_static_init()
310 UT small_chunk = trip_count / nth; in __kmp_for_static_init()
311 UT extras = trip_count % nth; in __kmp_for_static_init()
356 *plastiter = (tid == ((trip_count - 1) / (UT)chunk) % nth); in __kmp_for_static_init()
362 UT span = (trip_count + nth - 1) / nth; in __kmp_for_static_init()
377 *plastiter = (tid == ((trip_count - 1) / (UT)chunk)); in __kmp_for_static_init()
437 typedef typename traits_t<T>::unsigned_t UT; in __kmp_dist_for_static_init() typedef
[all …]
/external/libcxx/test/std/input.output/filesystems/fs.enum/
Dcheck_bitmask_types.hpp11 class UT = typename std::underlying_type<EnumType>::type,
12 UT UVal1 = static_cast<UT>(Val1),
13 UT UVal2 = static_cast<UT>(Val2),
14 UT UZero = static_cast<UT>(0),
19 static constexpr UT dcast(EnumType e) { return static_cast<UT>(e); } in dcast()
20 static constexpr UT unpromote(decltype((~UZero)) promoted) { return static_cast<UT>(promoted); } in unpromote()
Denum.path.format.pass.cpp28 typedef std::underlying_type<E>::type UT; in main() typedef
29 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
31 LIBCPP_ONLY(static_assert(std::is_same<UT, unsigned char>::value, "")); // Implementation detail in main()
Denum.directory_options.pass.cpp32 typedef std::underlying_type<E>::type UT; in main() typedef
33 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
34 static_assert(std::is_same<UT, unsigned char>::value, ""); in main()
Denum.perm_options.pass.cpp34 typedef std::underlying_type<E>::type UT; in main() typedef
35 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
37 static_assert(std::is_same<UT, unsigned char >::value, ""); // Implementation detail in main()
Denum.file_type.pass.cpp30 typedef std::underlying_type<E>::type UT; in main() typedef
31 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
33 static_assert(std::is_same<UT, signed char>::value, ""); // Implementation detail in main()
Denum.copy_options.pass.cpp31 typedef std::underlying_type<E>::type UT; in main() typedef
32 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
34 static_assert(std::is_same<UT, unsigned short>::value, ""); // Implementation detail in main()
Denum.perms.pass.cpp32 typedef std::underlying_type<E>::type UT; in main() typedef
33 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
35 static_assert(std::is_same<UT, unsigned >::value, ""); // Implementation detail in main()
/external/llvm-project/libcxx/test/std/input.output/filesystems/fs.enum/
Dcheck_bitmask_types.h11 class UT = typename std::underlying_type<EnumType>::type,
12 UT UVal1 = static_cast<UT>(Val1),
13 UT UVal2 = static_cast<UT>(Val2),
14 UT UZero = static_cast<UT>(0),
19 static constexpr UT dcast(EnumType e) { return static_cast<UT>(e); } in dcast()
20 static constexpr UT unpromote(decltype((~UZero)) promoted) { return static_cast<UT>(promoted); } in unpromote()
Denum.path.format.pass.cpp27 typedef std::underlying_type<E>::type UT; in main() typedef
28 LIBCPP_STATIC_ASSERT(!std::is_convertible<E, UT>::value, ""); in main()
30 LIBCPP_ONLY(static_assert(std::is_same<UT, unsigned char>::value, "")); // Implementation detail in main()
Denum.directory_options.pass.cpp31 typedef std::underlying_type<E>::type UT; in main() typedef
32 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
33 LIBCPP_ONLY(static_assert(std::is_same<UT, unsigned char>::value, "")); in main()
Denum.perm_options.pass.cpp33 typedef std::underlying_type<E>::type UT; in main() typedef
34 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
36 LIBCPP_ONLY(static_assert(std::is_same<UT, unsigned char >::value, "")); // Implementation detail in main()
Denum.file_type.pass.cpp29 typedef std::underlying_type<E>::type UT; in main() typedef
30 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
32 LIBCPP_ONLY(static_assert(std::is_same<UT, signed char>::value, "")); // Implementation detail in main()
Denum.copy_options.pass.cpp30 typedef std::underlying_type<E>::type UT; in main() typedef
31 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
33 LIBCPP_ONLY(static_assert(std::is_same<UT, unsigned short>::value, "")); // Implementation detail in main()
Denum.perms.pass.cpp31 typedef std::underlying_type<E>::type UT; in main() typedef
32 static_assert(!std::is_convertible<E, UT>::value, ""); in main()
34 LIBCPP_ONLY(static_assert(std::is_same<UT, unsigned >::value, "")); // Implementation detail in main()
/external/clang/include/clang/Basic/
DDiagnosticOptions.h40 using UT = std::underlying_type<DiagnosticLevelMask>::type; variable
41 return static_cast<DiagnosticLevelMask>(~static_cast<UT>(M));
46 using UT = std::underlying_type<DiagnosticLevelMask>::type; variable
48 static_cast<UT>(LHS) | static_cast<UT>(RHS));
53 using UT = std::underlying_type<DiagnosticLevelMask>::type; variable
55 static_cast<UT>(LHS) & static_cast<UT>(RHS));
/external/llvm-project/clang/include/clang/Basic/
DDiagnosticOptions.h42 using UT = std::underlying_type<DiagnosticLevelMask>::type; variable
43 return static_cast<DiagnosticLevelMask>(~static_cast<UT>(M));
48 using UT = std::underlying_type<DiagnosticLevelMask>::type; variable
50 static_cast<UT>(LHS) | static_cast<UT>(RHS));
55 using UT = std::underlying_type<DiagnosticLevelMask>::type; variable
57 static_cast<UT>(LHS) & static_cast<UT>(RHS));
/external/llvm/include/llvm/ExecutionEngine/
DJITSymbolFlags.h30 typedef std::underlying_type<JITSymbolFlags>::type UT; typedef
32 static_cast<UT>(LHS) | static_cast<UT>(RHS));
41 typedef std::underlying_type<JITSymbolFlags>::type UT; typedef
43 static_cast<UT>(LHS) & static_cast<UT>(RHS));
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/OrcError/
DOrcError.cpp79 typedef std::underlying_type<OrcErrorCode>::type UT; in orcError() typedef
80 return std::error_code(static_cast<UT>(ErrCode), *OrcErrCat); in orcError()
103 typedef std::underlying_type<OrcErrorCode>::type UT; in convertToErrorCode() typedef
104 return std::error_code(static_cast<UT>(OrcErrorCode::JITSymbolNotFound), in convertToErrorCode()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/
DOrcError.cpp83 typedef std::underlying_type<OrcErrorCode>::type UT; in orcError() typedef
84 return std::error_code(static_cast<UT>(ErrCode), *OrcErrCat); in orcError()
106 typedef std::underlying_type<OrcErrorCode>::type UT; in convertToErrorCode() typedef
107 return std::error_code(static_cast<UT>(OrcErrorCode::JITSymbolNotFound), in convertToErrorCode()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DMessageSetSchema.java125 private <UT, UB> void writeUnknownFieldsHelper( in writeUnknownFieldsHelper()
126 UnknownFieldSchema<UT, UB> unknownFieldSchema, T message, Writer writer) throws IOException { in writeUnknownFieldsHelper() argument
235 private <UT, UB, ET extends FieldSet.FieldDescriptorLite<ET>> void mergeFromHelper( in mergeFromHelper()
236 UnknownFieldSchema<UT, UB> unknownFieldSchema, in mergeFromHelper() argument
273 private <UT, UB, ET extends FieldSet.FieldDescriptorLite<ET>>
279 UnknownFieldSchema<UT, UB> unknownFieldSchema, in parseMessageSetItemOrUnknownField() argument
387 private <UT, UB> int getUnknownFieldsSerializedSize( in getUnknownFieldsSerializedSize()
388 UnknownFieldSchema<UT, UB> schema, T message) { in getUnknownFieldsSerializedSize() argument
389 UT unknowns = schema.getFromMessage(message); in getUnknownFieldsSerializedSize()
/external/llvm-project/clang/lib/Basic/
DDiagnosticOptions.cpp20 using UT = std::underlying_type<DiagnosticLevelMask>::type; in operator <<() typedef
21 return Out << static_cast<UT>(M); in operator <<()
/external/clang/lib/Basic/
DDiagnosticOptions.cpp20 using UT = std::underlying_type<DiagnosticLevelMask>::type; in operator <<() typedef
21 return Out << static_cast<UT>(M); in operator <<()

12345