Home
last modified time | relevance | path

Searched defs:head (Results 1 – 4 of 4) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/DriverSAM/
Dgmac_SAM.c177 #define CIRC_CNT( head, tail, size ) ( ( ( head ) - ( tail ) ) % ( size ) ) argument
184 #define CIRC_SPACE( head, tail, size ) CIRC_CNT( ( tail ), ( ( head ) + 1 ), ( size ) ) argument
187 #define CIRC_EMPTY( head, tail ) ( ( head ) == ( tail ) ) argument
189 #define CIRC_CLEAR( head, tail ) do { ( head ) = 0; ( tail ) = 0; } while( 0 ) argument
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/xilinx_ultrascale/
Dx_emacpsif_dma.c150 int head = xemacpsif->txHead; in emacps_check_tx() local
252 int head = xemacpsif->txHead; in emacps_send_message() local
400 int head = xemacpsif->rxHead; in emacps_check_rx() local
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/ATSAM4E/
Dgmac.c136 #define CIRC_CNT( head, tail, size ) ( ( ( head ) - ( tail ) ) % ( size ) ) argument
143 #define CIRC_SPACE( head, tail, size ) CIRC_CNT( ( tail ), ( ( head ) + 1 ), ( size ) ) argument
146 #define CIRC_EMPTY( head, tail ) ( head == tail ) argument
148 #define CIRC_CLEAR( head, tail ) do { ( head ) = 0; ( tail ) = 0; } while( ipFALSE_BOOL ) argument
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/Zynq/
Dx_emacpsif_dma.c149 int head = xemacpsif->txHead; in emacps_check_tx() local