Lines Matching defs:position

42         public static ulong Bits(int position, int width)  in Bits()
61 public static uint SetBitsFrom(uint source, uint newValue, int position, int width) in SetBitsFrom()
68 public static ulong SetBitsFrom(ulong source, ulong newValue, int position, int width) in SetBitsFrom()
95 public static void ClearBits(ref uint reg, int position, int width) in ClearBits()
105 public static void ClearBits(ref ulong reg, int position, int width) in ClearBits()
115 public static void SetBits(ref uint reg, int position, int width) in SetBits()
125 public static void SetBits(ref ulong reg, int position, int width) in SetBits()
218 public static bool AreAnyBitsSet(uint reg, int position, int width) in AreAnyBitsSet()
224 public static bool AreAnyBitsSet(ulong reg, int position, int width) in AreAnyBitsSet()
230 public static bool AreAllBitsSet(ulong reg, int position, int width) in AreAllBitsSet()
236 public static void UpdateWithShifted(ref uint reg, uint newValue, int position, int width) in UpdateWithShifted()
241 public static void UpdateWithShifted(ref ulong reg, ulong newValue, int position, int width) in UpdateWithShifted()
256 public static void UpdateWith(ref uint reg, uint newValue, int position, int width) in UpdateWith()
262 public static void UpdateWith(ref ulong reg, ulong newValue, int position, int width) in UpdateWith()
268 public static void OrWith(ref uint reg, uint newValue, int position, int width) in OrWith()
274 public static void OrWith(ref ulong reg, ulong newValue, int position, int width) in OrWith()
280 public static void AndWithNot(ref uint reg, uint newValue, int position, int width) in AndWithNot()
286 public static void AndWithNot(ref ulong reg, ulong newValue, int position, int width) in AndWithNot()
292 public static void XorWith(ref uint reg, uint newValue, int position, int width) in XorWith()
298 public static void XorWith(ref ulong reg, ulong newValue, int position, int width) in XorWith()
637 public static uint CalculateMask(int width, int position) in CalculateMask()
649 public static ulong CalculateQuadWordMask(int width, int position) in CalculateQuadWordMask()
733 private static void AssertMaskParameters(int width, int position, int maxWidth) in AssertMaskParameters()
911 public BitConcatenator StackAbove(uint value, int length, int position = 0) in StackAbove()