Searched refs:received_bytes (Results 1 – 3 of 3) sorted by relevance
| /openbmc/qemu/hw/i2c/ |
| H A D | npcm7xx_smbus.c | 282 uint8_t received_bytes = NPCM7XX_SMBRXF_STS_RX_BYTES(s->rxf_sts); in npcm7xx_smbus_recv_fifo() local 285 if (received_bytes == expected_bytes) { in npcm7xx_smbus_recv_fifo() 289 while (received_bytes < expected_bytes && in npcm7xx_smbus_recv_fifo() 290 received_bytes < NPCM7XX_SMBUS_FIFO_SIZE) { in npcm7xx_smbus_recv_fifo() 291 pos = (s->rx_cur + received_bytes) % NPCM7XX_SMBUS_FIFO_SIZE; in npcm7xx_smbus_recv_fifo() 295 ++received_bytes; in npcm7xx_smbus_recv_fifo() 299 received_bytes, expected_bytes); in npcm7xx_smbus_recv_fifo() 300 s->rxf_sts = received_bytes; in npcm7xx_smbus_recv_fifo() 301 if (unlikely(received_bytes < expected_bytes)) { in npcm7xx_smbus_recv_fifo() 314 if (received_bytes == NPCM7XX_SMBUS_FIFO_SIZE) { in npcm7xx_smbus_recv_fifo() [all …]
|
| /openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | samples.py | 42 def __init__(self, time, iface, received_bytes, transmitted_bytes, receive_diff, transmit_diff): argument 45 self.received_bytes = received_bytes
|
| H A D | draw.py | 447 max_received_sample = max(samples, key=lambda s: s.received_bytes) 453 draw_legend_line(ctx, "Bytes received (max %d)" % (max_received_sample.received_bytes), 470 [(sample.time, sample.received_bytes) for sample in samples], \
|