Lines Matching defs:reg

51         public static bool IsBitSet(uint reg, byte bit)  in IsBitSet()
56 public static bool IsBitSet(ulong reg, byte bit) in IsBitSet()
75 public static void ClearBits(ref uint reg, params byte[] bits) in ClearBits()
85 public static void ClearBits(ref ulong reg, params byte[] bits) in ClearBits()
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()
246 public static void UpdateWithMasked(ref uint reg, uint newValue, uint mask) in UpdateWithMasked()
251 public static void UpdateWithMasked(ref ulong reg, ulong newValue, ulong mask) in UpdateWithMasked()
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()
314 public static void ClearBits(ref byte reg, params byte[] bits) in ClearBits()
324 public static void ClearBitsIfSet(ref uint reg, uint testValue, params byte[] bits) in ClearBitsIfSet()
337 public static void ClearBitsIfSet(ref byte reg, byte testValue, params byte[] bits) in ClearBitsIfSet()
350 public static void SetBit(ref ulong reg, byte bit, bool value) in SetBit()
362 public static void SetBit(ref uint reg, byte bit, bool value) in SetBit()
374 public static void SetBit(ref byte reg, byte bit, bool value) in SetBit()
386 public static IList<int> GetSetBits(ulong reg) in GetSetBits()
404 public static string GetSetBitsPretty(ulong reg) in GetSetBitsPretty()
416 public static void ForeachBit(ulong reg, Action<byte, bool> action, byte? bitCount = null) in ForeachBit()
426 public static void ForeachActiveBit(ulong reg, Action<byte> action) in ForeachActiveBit()
475 public static bool[] GetBits(ulong reg) in GetBits()
480 public static bool[] GetBits(uint reg) in GetBits()
485 public static bool[] GetBits(ushort reg) in GetBits()
490 public static bool[] GetBits(byte reg) in GetBits()
495 public static byte[] GetNibbles(ulong reg) in GetNibbles()
507 public static byte GetValue(byte reg, int offset, int size) in GetValue()
516 public static uint GetValue(uint reg, int offset, int size) in GetValue()
525 public static ulong GetValue(ulong reg, int offset, int size) in GetValue()
534 public static uint GetMaskedValue(uint reg, int maskOffset, int maskSize) in GetMaskedValue()
539 public static ulong GetMaskedValue(ulong reg, int maskOffset, int maskSize) in GetMaskedValue()
544 public static void SetMaskedValue(ref uint reg, uint value, int maskOffset, int maskSize) in SetMaskedValue()
559 public static void SetMaskedValue(ref ulong reg, ulong value, int maskOffset, int maskSize) in SetMaskedValue()
739 private static bool[] GetBitsInner(ulong reg, int length) in GetBitsInner()