Home
last modified time | relevance | path

Searched refs:numptr (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/util/
H A Dfifo8.c81 uint32_t skip, uint32_t *numptr, in fifo8_peekpop_bufptr() argument
98 if (numptr) { in fifo8_peekpop_bufptr()
99 *numptr = num; in fifo8_peekpop_bufptr()
104 const uint8_t *fifo8_peek_bufptr(Fifo8 *fifo, uint32_t max, uint32_t *numptr) in fifo8_peek_bufptr() argument
106 return fifo8_peekpop_bufptr(fifo, max, 0, numptr, false); in fifo8_peek_bufptr()
109 const uint8_t *fifo8_pop_bufptr(Fifo8 *fifo, uint32_t max, uint32_t *numptr) in fifo8_pop_bufptr() argument
111 return fifo8_peekpop_bufptr(fifo, max, 0, numptr, true); in fifo8_pop_bufptr()
/openbmc/qemu/include/qemu/
H A Dfifo8.h130 const uint8_t *fifo8_pop_bufptr(Fifo8 *fifo, uint32_t max, uint32_t *numptr);
157 const uint8_t *fifo8_peek_bufptr(Fifo8 *fifo, uint32_t max, uint32_t *numptr);
/openbmc/qemu/hw/char/
H A Dsifive_uart.c75 uint32_t numptr = 0; in sifive_uart_xmit() local
89 fifo8_num_used(&s->tx_fifo), &numptr); in sifive_uart_xmit()
90 ret = qemu_chr_fe_write(&s->chr, characters, numptr); in sifive_uart_xmit()