Lines Matching defs:pcNsToDeadline

312  * @param   pcNsToDeadline      Where to return the number of nano seconds to
316 DECLINLINE(uint64_t) tmVirtualSyncGetHandleCatchUpLocked(PVM pVM, uint64_t u64, uint64_t off, uint64_t *pcNsToDeadline)
377 if (pcNsToDeadline)
383 *pcNsToDeadline = tmVirtualVirtToNsDeadline(pVM, cNsToDeadline);
400 if (pcNsToDeadline)
401 *pcNsToDeadline = 0;
425 * @param pcNsToDeadline Where to return the number of nano seconds to
429 DECLINLINE(uint64_t) tmVirtualSyncGetLocked(PVM pVM, uint64_t u64, uint64_t *pcNsToDeadline)
438 if (pcNsToDeadline)
439 *pcNsToDeadline = 0;
451 return tmVirtualSyncGetHandleCatchUpLocked(pVM, u64, off, pcNsToDeadline);
472 if (pcNsToDeadline)
473 *pcNsToDeadline = tmVirtualVirtToNsDeadline(pVM, u64Expire - u64);
494 if (pcNsToDeadline)
495 *pcNsToDeadline = 0;
512 * @param pcNsToDeadline Where to return the number of nano seconds to
517 DECLINLINE(uint64_t) tmVirtualSyncGetEx(PVM pVM, bool fCheckTimers, uint64_t *pcNsToDeadline)
524 if (pcNsToDeadline)
525 *pcNsToDeadline = 0;
562 return tmVirtualSyncGetLocked(pVM, u64, pcNsToDeadline);
582 if (pcNsToDeadline)
583 *pcNsToDeadline = tmVirtualVirtToNsDeadline(pVM, u64Expire - off);
597 if (pcNsToDeadline)
598 *pcNsToDeadline = 0;
631 return tmVirtualSyncGetLocked(pVM, u64, pcNsToDeadline);
640 if (pcNsToDeadline)
641 *pcNsToDeadline = 0;
725 if (pcNsToDeadline)
726 *pcNsToDeadline = 0;
729 else if (pcNsToDeadline)
735 *pcNsToDeadline = tmVirtualVirtToNsDeadline(pVM, cNsToDeadline);
754 return tmVirtualSyncGetEx(pVM, true /*fCheckTimers*/, NULL /*pcNsToDeadline*/);
769 return tmVirtualSyncGetEx(pVM, false /*fCheckTimers*/, NULL /*pcNsToDeadline*/);
784 return tmVirtualSyncGetEx(pVM, fCheckTimers, NULL /*pcNsToDeadline*/);
794 * @param pcNsToDeadline Where to return the number of nano seconds to
799 VMM_INT_DECL(uint64_t) TMVirtualSyncGetWithDeadlineNoCheck(PVM pVM, uint64_t *pcNsToDeadline)
803 *pcNsToDeadline = cNsToDeadlineTmp;