Lines Matching +defs:obj +defs:y
284 obj -- is higher-level synchronization object to report to ittnotify. It
295 kmp_uint32 (*pred)(UT, UT) USE_ITT_BUILD_ARG(void *obj)) {
304 KMP_FSYNC_SPIN_INIT(obj, CCAST(UT *, spin));
309 KMP_FSYNC_SPIN_PREPARE(obj);
318 KMP_FSYNC_SPIN_ACQUIRED(obj);
460 /* Computes and returns x to the power of y, where y must a non-negative integer
463 static __forceinline long double __kmp_pow(long double x, UT y) {
467 // KMP_DEBUG_ASSERT(y >= 0); // y is unsigned
468 while (y) {
469 if (y & 1)
472 y >>= 1;