Home
last modified time | relevance | path

Searched refs:IsPowerOfTwo (Results 1 – 8 of 8) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DGenericI2cEeprom.cs26 if(pageSize <= 0 || !Misc.IsPowerOfTwo((ulong)pageSize)) in GenericI2cEeprom()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DVirtIOFSDevice.cs52 if(!Misc.IsPowerOfTwo(queueSize)) in Create()
DUFSDevice.cs34 if(!Misc.IsPowerOfTwo(logicalBlockSize) || logicalBlockSize < MinimumLogicalBlockSize) in UFSDevice()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DNXP_LPUART.cs31 if (!Misc.IsPowerOfTwo(fifoSize)) in NXP_LPUART()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DIMXRT_LPSPI.cs23 if(!Misc.IsPowerOfTwo(fifoSize)) in IMXRT_LPSPI()
DMXIC_MX66UM1G45G.cs25 …ingMemory.Size < 64.KB() || underlyingMemory.Size > 256.MB() || !Misc.IsPowerOfTwo((ulong)underlyi… in MXIC_MX66UM1G45G()
DGenericSpiFlash.cs28 if(!Misc.IsPowerOfTwo((ulong)underlyingMemory.Size)) in GenericSpiFlash()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs303 public static bool IsPowerOfTwo(ulong value) in IsPowerOfTwo() method in Antmicro.Renode.Utilities.Misc