Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/DriverSAM/
Dgmac_SAM.c234 uint32_t ul_index; in gmac_reset_tx_mem() local
241 for( ul_index = 0; ul_index < ARRAY_SIZE( gs_tx_desc ); ul_index++ ) in gmac_reset_tx_mem()
243 uint32_t ulAddr = gs_tx_desc[ ul_index ].addr; in gmac_reset_tx_mem()
254 for( ul_index = 0; ul_index < GMAC_TX_BUFFERS; ul_index++ ) in gmac_reset_tx_mem()
262 ul_address = ( uint32_t ) ( &( gs_uc_tx_buffer[ ul_index * GMAC_TX_UNITSIZE ] ) ); in gmac_reset_tx_mem()
265 gs_tx_desc[ ul_index ].addr = ul_address; in gmac_reset_tx_mem()
266 gs_tx_desc[ ul_index ].status.val = GMAC_TXD_USED; in gmac_reset_tx_mem()
295 uint32_t ul_index; in gmac_reset_rx_mem() local
304 for( ul_index = 0; ul_index < GMAC_RX_BUFFERS; ul_index++ ) in gmac_reset_rx_mem()
316 ul_address = ( uint32_t ) ( &( gs_uc_rx_buffer[ ul_index * GMAC_RX_UNITSIZE ] ) ); in gmac_reset_rx_mem()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/ksz8851snl/
DNetworkInterface.c646 uint32_t ul_index = 0; in ksz8851snl_rx_populate_queue() local
650 for( ul_index = 0; ul_index < MICREL_RX_BUFFERS; ul_index++ ) in ksz8851snl_rx_populate_queue()
652 if( xMicrelDevice.rx_buffers[ ul_index ] == NULL ) in ksz8851snl_rx_populate_queue()
667 xMicrelDevice.rx_buffers[ ul_index ] = pxNetworkBuffer; in ksz8851snl_rx_populate_queue()
669 xMicrelDevice.rx_ready[ ul_index ] = pdFALSE; in ksz8851snl_rx_populate_queue()
1053 uint32_t ul_index = 0; in ksz8851snl_rx_init() local
1060 for( ul_index = 0; ul_index < MICREL_RX_BUFFERS; ul_index++ ) in ksz8851snl_rx_init()
1062 xMicrelDevice.rx_buffers[ ul_index ] = NULL; in ksz8851snl_rx_init()
1063 xMicrelDevice.rx_ready[ ul_index ] = pdFALSE; in ksz8851snl_rx_init()
1078 uint32_t ul_index = 0; in ksz8851snl_tx_init() local
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/ATSAM4E/
Dgmac.c210 uint32_t ul_index; in gmac_reset_tx_mem() local
219 for( ul_index = 0; ul_index < p_dev->ul_tx_list_size; ul_index++ ) in gmac_reset_tx_mem()
227 ul_address = ( uint32_t ) ( &( p_tx_buff[ ul_index * GMAC_TX_UNITSIZE ] ) ); in gmac_reset_tx_mem()
230 p_td[ ul_index ].addr = ul_address; in gmac_reset_tx_mem()
231 p_td[ ul_index ].status.val = GMAC_TXD_USED; in gmac_reset_tx_mem()
252 uint32_t ul_index; in gmac_reset_rx_mem() local
261 for( ul_index = 0; ul_index < p_dev->ul_rx_list_size; ul_index++ ) in gmac_reset_rx_mem()
263 ul_address = ( uint32_t ) ( &( p_rx_buff[ ul_index * GMAC_RX_UNITSIZE ] ) ); in gmac_reset_rx_mem()
264 pRd[ ul_index ].addr.val = ul_address & GMAC_RXD_ADDR_MASK; in gmac_reset_rx_mem()
265 pRd[ ul_index ].status.val = 0; in gmac_reset_rx_mem()