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

/vbox/src/VBox/Runtime/generic/
H A Dsemxroads-generic.cpp195 * @param uCountShift The shift count for getting the count.
201 uint64_t uCountShift, uint64_t fCountMask,
216 uint64_t c = (u64State & fCountMask) >> uCountShift;
220 u64State |= c << uCountShift;
231 u64State |= (UINT64_C(1) << uCountShift) | (fDir << RTSEMXROADS_DIR_SHIFT);
242 uint64_t c = (u64State & fCountMask) >> uCountShift;
252 u64State |= (c << uCountShift) | (cWait << uWaitCountShift);
327 * @param uCountShift The shift count 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;
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