Searched refs:u64NewValue (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/PC/
H A DDevHPET.cpp314 DECLINLINE(uint64_t) hpetUpdateMasked(uint64_t u64NewValue, uint64_t u64OldValue, uint64_t u64Mask) argument
316 u64NewValue &= u64Mask;
317 u64NewValue |= (u64OldValue & ~u64Mask);
318 return u64NewValue;
321 DECLINLINE(bool) hpetBitJustSet(uint64_t u64OldValue, uint64_t u64NewValue, uint64_t u64Mask) argument
324 && !!(u64NewValue & u64Mask);
327 DECLINLINE(bool) hpetBitJustCleared(uint64_t u64OldValue, uint64_t u64NewValue, uint64_t u64Mask) argument
330 && !(u64NewValue & u64Mask);
H A DDevIoApic.cpp353 uint64_t u64NewValue; local
377 u64NewValue = (pThis->ioredtbl[idxIoRedTbl] & (UINT64_C(0xffffffff00000000) | RT_BIT(14) | RT_BIT(12)))
382 u64NewValue = pThis->ioredtbl[idxIoRedTbl];
390 u64NewValue = (pThis->ioredtbl[idxIoRedTbl] & UINT64_C(0x00000000ffffffff))
394 Log(("ioapic: IOREDTBL%u %#018llx -> %#018llx\n", idxIoRedTbl, pThis->ioredtbl[idxIoRedTbl], u64NewValue));
395 pThis->ioredtbl[idxIoRedTbl] = u64NewValue;

Completed in 48 milliseconds