Lines Matching defs:uCountShift
195 * @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;
353 u64State |= c << uCountShift;