Home
last modified time | relevance | path

Searched refs:bitCount (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DAndes_AndeStarV5Extension.cs176 …private ulong GetImmediate(ulong opcode, Func<ulong, ulong> valueExtractor, int bitCount, bool ext… in GetImmediate() argument
181 return BitHelper.SignExtend(value, bitCount); in GetImmediate()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DBitHelper.cs416 public static void ForeachBit(ulong reg, Action<byte, bool> action, byte? bitCount = null) in ForeachBit() argument
419 byte iterations = bitCount ?? sizeof(ulong) * 8; in ForeachBit()