Lines Matching defs:UT

69   typedef typename traits_t<T>::unsigned_t UT;
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 count; // unsigned
125 UT ordered_lower; // unsigned
126 UT ordered_upper; // unsigned
159 typedef typename traits_t<T>::unsigned_t UT;
163 volatile UT iteration;
165 volatile UT ordered_iteration;
167 UT ordered_dummy[KMP_MAX_ORDERED - 3];
172 typedef typename traits_t<T>::unsigned_t UT;
175 dispatch_shared_infoXX_template<UT> s;
279 UT is unsigned 4- or 8-byte type
293 template <typename UT>
294 static UT __kmp_wait(volatile UT *spinner, UT checker,
295 kmp_uint32 (*pred)(UT, UT) USE_ITT_BUILD_ARG(void *obj)) {
297 volatile UT *spin = spinner;
298 UT check = checker;
300 kmp_uint32 (*f)(UT, UT) = pred;
302 UT r;
304 KMP_FSYNC_SPIN_INIT(obj, CCAST(UT *, spin));
325 template <typename UT>
327 dispatch_private_info_template<UT> *pr;
336 pr = reinterpret_cast<dispatch_private_info_template<UT> *>(
348 dispatch_shared_info_template<UT> *sh =
349 reinterpret_cast<dispatch_shared_info_template<UT> *>(
351 UT lower;
354 pr = reinterpret_cast<dispatch_private_info_template<UT> *>(
377 traits_t<UT>::spec, traits_t<UT>::spec);
382 __kmp_wait<UT>(&sh->u.s.ordered_iteration, lower,
383 __kmp_ge<UT> USE_ITT_BUILD_ARG(NULL));
391 traits_t<UT>::spec, traits_t<UT>::spec);
400 template <typename UT>
402 typedef typename traits_t<UT>::signed_t ST;
403 dispatch_private_info_template<UT> *pr;
412 pr = reinterpret_cast<dispatch_private_info_template<UT> *>(
420 dispatch_shared_info_template<UT> *sh =
421 reinterpret_cast<dispatch_shared_info_template<UT> *>(
425 pr = reinterpret_cast<dispatch_private_info_template<UT> *>(
429 KMP_FSYNC_RELEASING(CCAST(UT *, &sh->u.s.ordered_iteration));
462 template <typename UT>
463 static __forceinline long double __kmp_pow(long double x, UT y) {
496 typedef typename traits_t<T>::unsigned_t UT;
498 long double x = tc * __kmp_pow<UT>(base, idx);
499 UT r = (UT)x;