Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/DriverSAM/
Dgmac_SAM.c256 uint32_t ul_index; in gmac_reset_tx_mem() local
263 for( ul_index = 0; ul_index < ARRAY_SIZE( gs_tx_desc ); ul_index++ ) in gmac_reset_tx_mem()
265 uint32_t ulAddr = gs_tx_desc[ ul_index ].addr; in gmac_reset_tx_mem()
276 for( ul_index = 0; ul_index < GMAC_TX_BUFFERS; ul_index++ ) in gmac_reset_tx_mem()
284 ul_address = ( uint32_t ) ( &( gs_uc_tx_buffer[ ul_index * GMAC_TX_UNITSIZE ] ) ); in gmac_reset_tx_mem()
287 gs_tx_desc[ ul_index ].addr = ul_address; in gmac_reset_tx_mem()
288 gs_tx_desc[ ul_index ].status.val = GMAC_TXD_USED; in gmac_reset_tx_mem()
317 uint32_t ul_index; in gmac_reset_rx_mem() local
326 for( ul_index = 0; ul_index < GMAC_RX_BUFFERS; ul_index++ ) in gmac_reset_rx_mem()
338 ul_address = ( uint32_t ) ( &( gs_uc_rx_buffer[ ul_index * GMAC_RX_UNITSIZE ] ) ); in gmac_reset_rx_mem()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/ksz8851snl/
DNetworkInterface.c655 uint32_t ul_index = 0; in ksz8851snl_rx_populate_queue() local
659 for( ul_index = 0; ul_index < MICREL_RX_BUFFERS; ul_index++ ) in ksz8851snl_rx_populate_queue()
661 if( xMicrelDevice.rx_buffers[ ul_index ] == NULL ) in ksz8851snl_rx_populate_queue()
676 xMicrelDevice.rx_buffers[ ul_index ] = pxNetworkBuffer; in ksz8851snl_rx_populate_queue()
678 xMicrelDevice.rx_ready[ ul_index ] = pdFALSE; in ksz8851snl_rx_populate_queue()
1062 uint32_t ul_index = 0; in ksz8851snl_rx_init() local
1069 for( ul_index = 0; ul_index < MICREL_RX_BUFFERS; ul_index++ ) in ksz8851snl_rx_init()
1071 xMicrelDevice.rx_buffers[ ul_index ] = NULL; in ksz8851snl_rx_init()
1072 xMicrelDevice.rx_ready[ ul_index ] = pdFALSE; in ksz8851snl_rx_init()
1087 uint32_t ul_index = 0; in ksz8851snl_tx_init() local
[all …]
/FreeRTOS-Plus-TCP-v4.0.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()