Searched defs:fCountMask (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A Dsemxroads-generic.cpp196 * @param fCountMask The mask for getting the count.
201 uint64_t uCountShift, uint64_t fCountMask,
216 uint64_t c = (u64State & fCountMask) >> uCountShift;
219 u64State &= ~fCountMask;
242 uint64_t c = (u64State & fCountMask) >> uCountShift;
251 u64State &= ~(fCountMask | fWaitCountMask);
328 * @param fCountMask The mask for getting the count.
330 DECL_FORCE_INLINE(int) rtSemXRoadsLeave(RTSEMXROADSINTERNAL *pThis, uint64_t fDir, uint64_t uCountShift, uint64_t fCountMask)
344 c = (u64State & fCountMask) >> uCountShift;
349 || (u64State & ((RTSEMXROADS_CNT_NS_MASK | RTSEMXROADS_CNT_EW_MASK) & ~fCountMask))
200 rtSemXRoadsEnter(RTSEMXROADSINTERNAL *pThis, uint64_t fDir, uint64_t uCountShift, uint64_t fCountMask, uint64_t uWaitCountShift, uint64_t fWaitCountMask) argument
[all...]

Completed in 43 milliseconds