Searched defs:Fifo (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciSioSerialDxe/
H A DSerialIo.c201 @param Fifo A pointer to the Data Structure SERIAL_DEV_FIFO
207 IN SERIAL_DEV_FIFO *Fifo
210 return (BOOLEAN) (((Fifo->Tail + 1) % SERIAL_MAX_FIFO_SIZE) == Fifo->Head);
216 @param Fifo A pointer to the Data Structure SERIAL_DEV_FIFO
222 IN SERIAL_DEV_FIFO *Fifo
226 return (BOOLEAN) (Fifo->Head == Fifo->Tail);
232 @param Fifo A pointer to the Data Structure SERIAL_DEV_FIFO
240 IN OUT SERIAL_DEV_FIFO *Fifo,
239 SerialFifoAdd( IN OUT SERIAL_DEV_FIFO *Fifo, IN UINT8 Data ) argument
269 SerialFifoRemove( IN OUT SERIAL_DEV_FIFO *Fifo, OUT UINT8 *Data ) argument
[all...]
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtSerialIoDxe/
H A DWinNtSerialIo.c587 Private->Fifo.First = 0;
588 Private->Fifo.Last = 0;
589 Private->Fifo.Surplus = SERIAL_MAX_BUFFER_SIZE;
1428 if (IsaSerialFifoAdd (&Private->Fifo, ByteBuffer[Index]) == EFI_SUCCESS) {
1529 if (IsaSerialFifoRemove (&Private->Fifo, &Data) == EFI_SUCCESS) {
1579 IN SERIAL_DEV_FIFO *Fifo
1587 Fifo SERIAL_DEV_FIFO *: A pointer to the Data Structure SERIAL_DEV_FIFO
1595 if (Fifo->Surplus == 0) {
1604 IN SERIAL_DEV_FIFO *Fifo
1612 Fifo SERIAL_DEV_FIF
1628 IsaSerialFifoAdd( IN SERIAL_DEV_FIFO *Fifo, IN UINT8 Data ) argument
1669 IsaSerialFifoRemove( IN SERIAL_DEV_FIFO *Fifo, OUT UINT8 *Data ) argument
[all...]
H A DWinNtSerialIo.h95 SERIAL_DEV_FIFO Fifo; member in struct:__anon8582
432 IN SERIAL_DEV_FIFO *Fifo
442 Fifo - TODO: add argument description
453 IN SERIAL_DEV_FIFO *Fifo
463 Fifo - TODO: add argument description
474 IN SERIAL_DEV_FIFO *Fifo,
485 Fifo - TODO: add argument description
497 IN SERIAL_DEV_FIFO *Fifo,
508 Fifo - TODO: add argument description
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/
H A DSerialIo.c250 @param[in] Fifo A pointer to the Data Structure DEBUG_SERIAL_FIFO.
257 IN DEBUG_SERIAL_FIFO *Fifo
260 if (Fifo->Surplus == DEBGU_SERIAL_IO_FIFO_DEPTH) {
270 @param[in] Fifo A pointer to the Data Structure DEBUG_SERIAL_FIFO.
277 IN DEBUG_SERIAL_FIFO *Fifo
281 if (Fifo->Surplus == 0) {
291 @param[in] Fifo A pointer to the Data Structure DEBUG_SERIAL_FIFO.
300 IN DEBUG_SERIAL_FIFO *Fifo,
308 if (IsDebugTerminalFifoFull (Fifo)) {
314 Fifo
299 DebugTerminalFifoAdd( IN DEBUG_SERIAL_FIFO *Fifo, IN UINT8 Data ) argument
335 DebugTerminalFifoRemove( IN DEBUG_SERIAL_FIFO *Fifo, OUT UINT8 *Data ) argument
[all...]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/
H A DSerial.c836 @param Fifo A pointer to the Data Structure SERIAL_DEV_FIFO
843 IN SERIAL_DEV_FIFO *Fifo
847 if (Fifo->Surplus == 0) {
857 @param Fifo A pointer to the Data Structure SERIAL_DEV_FIFO
864 IN SERIAL_DEV_FIFO *Fifo
868 if (Fifo->Surplus == SERIAL_MAX_BUFFER_SIZE) {
878 @param Fifo A pointer to the Data Structure SERIAL_DEV_FIFO
887 IN SERIAL_DEV_FIFO *Fifo,
895 if (IsaSerialFifoFull (Fifo)) {
901 Fifo
886 IsaSerialFifoAdd( IN SERIAL_DEV_FIFO *Fifo, IN UINT8 Data ) argument
922 IsaSerialFifoRemove( IN SERIAL_DEV_FIFO *Fifo, OUT UINT8 *Data ) argument
[all...]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
H A DBiosSnp16.c1023 @param Fifo Point to trasmit FIFO structure.
1029 EFI_SIMPLE_NETWORK_DEV_FIFO *Fifo
1032 if (((Fifo->Last + 1) % EFI_SIMPLE_NETWORK_MAX_TX_FIFO_SIZE) == Fifo->First) {
1042 @param Fifo Point to trasmit FIFO structure.
1048 EFI_SIMPLE_NETWORK_DEV_FIFO *Fifo
1051 if (Fifo->Last == Fifo->First) {
1062 @param Fifo Point to trasmit FIFO structure.
1070 EFI_SIMPLE_NETWORK_DEV_FIFO *Fifo,
1069 SimpleNetworkTransmitFifoAdd( EFI_SIMPLE_NETWORK_DEV_FIFO *Fifo, VOID *Data ) argument
1093 SimpleNetworkTransmitFifoRemove( EFI_SIMPLE_NETWORK_DEV_FIFO *Fifo, VOID **Data ) argument
[all...]

Completed in 611 milliseconds