Searched refs:FillLevel (Results 1 – 3 of 3) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/ |
| D | IMXRT_FlexSPI.cs | 238 …Read, name: "FILL - Fill level of IP RX FIFO", valueProviderCallback: _ => (uint)rxQueue.FillLevel) in DefineRegisters() 369 ipRxWatermarkAvailable.Value = rxQueue.FillLevel >= (int)rxWatermark.Value; in UpdateInterrupts() 601 FillLevel = 0; in Reset() 609 if(position >= FillLevel) in Read() 613 … return BitHelper.ToUInt32(internalBuffer, position, Math.Min(width, FillLevel - position), true); in Read() 618 var bytesToDequeue = Math.Min(FillLevel, maxCount); in Dequeue() 623 var bytesLeft = FillLevel - bytesToDequeue; in Dequeue() 629 FillLevel = bytesLeft; in Dequeue() 638 if(FillLevel == internalBuffer.Length) in Enqueue() 643 internalBuffer[FillLevel++] = b; in Enqueue() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/ |
| D | MCAN_Structures.cs | 717 return FillLevel == Size.Value; 721 public ulong FillLevel property 764 return Size.Value - FillLevel; 839 public ulong FillLevel property
|
| D | MCAN.cs | 488 …thValueField(0, 6, FieldMode.Read, valueProviderCallback: _ => txEventFIFO.FillLevel, name: "EFFL") in BuildRegisterMap() 503 if(txEventFIFO.FillLevel == 0) in BuildRegisterMap() 804 …var watermarkReached = (txEventFIFO.Watermark.Value > 0) && (txEventFIFO.FillLevel >= txEventFIFO.… in StoreInTxEventFIFO()
|