Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/ethernet/
Deth_stm32_hal.c1090 uint32_t hash_index; in eth_stm32_mcast_filter() local
1095 hash_index = (crc >> 26) & 0x3f; in eth_stm32_mcast_filter()
1097 __ASSERT_NO_MSG(hash_index < ARRAY_SIZE(dev_data->hash_index_cnt)); in eth_stm32_mcast_filter()
1108 dev_data->hash_index_cnt[hash_index]++; in eth_stm32_mcast_filter()
1109 hash_table[hash_index / 32] |= (1 << (hash_index % 32)); in eth_stm32_mcast_filter()
1111 if (dev_data->hash_index_cnt[hash_index] == 0) { in eth_stm32_mcast_filter()
1116 dev_data->hash_index_cnt[hash_index]--; in eth_stm32_mcast_filter()
1117 if (dev_data->hash_index_cnt[hash_index] == 0) { in eth_stm32_mcast_filter()
1118 hash_table[hash_index / 32] &= ~(1 << (hash_index % 32)); in eth_stm32_mcast_filter()