Lines Matching refs:next_index
106 u32 next_index = tx_hash_table[index].next;
108 index = next_index;
205 u32 next_index = slave_info->head;
208 hash_table[hash_index].next = next_index;
211 if (next_index != TLB_NULL_INDEX)
212 hash_table[next_index].prev = hash_index;
383 u32 index, next_index;
390 for (; index != RLB_NULL_INDEX; index = next_index) {
391 next_index = rx_hash_table[index].used_next;
756 u32 next_index = bond_info->rx_hashtbl[index].used_next;
760 bond_info->rx_hashtbl_used_head = next_index;
762 bond_info->rx_hashtbl[prev_index].used_next = next_index;
763 if (next_index != RLB_NULL_INDEX)
764 bond_info->rx_hashtbl[next_index].used_prev = prev_index;
771 u32 next_index = bond_info->rx_hashtbl[index].src_next;
777 if (next_index != RLB_NULL_INDEX)
778 bond_info->rx_hashtbl[next_index].src_prev = prev_index;
785 bond_info->rx_hashtbl[prev_index].src_first = next_index;
787 bond_info->rx_hashtbl[prev_index].src_next = next_index;
832 u32 next_index = entry->src_next;
836 index = next_index;
892 u32 next_index = bond_info->rx_hashtbl[curr_index].used_next;
897 curr_index = next_index;