Lines Matching refs:msc
104 printf("Invalid MSC: was %llu, now %llu\n",
112 uint64_t msc, ust, sbc;
113 DRI2WaitMSC(dpy, win, 0, 1, 0, &ust, &msc, &sbc);
217 uint64_t msc, ust, sbc;
222 DRI2WaitMSC(dpy, win, 0, 1, 0, &ust, &msc, &sbc);
224 target = msc + modulus + 1;
229 &ust, &msc, &sbc);
230 if (msc != target) {
231 printf("Missed future MSC (%d, %d): expected=%lld, found=%lld\n",
233 (long long)target, (long long)msc);
236 target = msc;
239 if (target <= msc)
242 DRI2WaitMSC(dpy, win, msc, modulus, remainder,
243 &ust, &msc, &sbc);
245 if (msc != target) {
246 printf("Missed past MSC (%d, %d): expected=%lld, found=%lld\n",
248 (long long)target, (long long)msc);