Searched defs:head (Results 1 – 4 of 4) sorted by relevance
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/DriverSAM/ |
D | gmac_SAM.c | 177 #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/ |
D | x_emacpsif_dma.c | 150 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/ |
D | gmac.c | 136 #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/ |
D | x_emacpsif_dma.c | 149 int head = xemacpsif->txHead; in emacps_check_tx() local
|