Home
last modified time | relevance | path

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

/dpdk/drivers/net/txgbe/
H A Dtxgbe_fdir.c526 uint32_t bucket_hash; in atr_compute_perfect_hash() local
528 bucket_hash = txgbe_atr_compute_hash(input, in atr_compute_perfect_hash()
531 bucket_hash &= PERFECT_BUCKET_256KB_HASH_MASK; in atr_compute_perfect_hash()
535 bucket_hash &= PERFECT_BUCKET_64KB_HASH_MASK; in atr_compute_perfect_hash()
537 return TXGBE_FDIRPIHASH_BKT(bucket_hash); in atr_compute_perfect_hash()
569 uint32_t bucket_hash, sig_hash; in atr_compute_signature_hash() local
571 bucket_hash = txgbe_atr_compute_hash(input, in atr_compute_signature_hash()
574 bucket_hash &= SIG_BUCKET_256KB_HASH_MASK; in atr_compute_signature_hash()
576 bucket_hash &= SIG_BUCKET_128KB_HASH_MASK; in atr_compute_signature_hash()
578 bucket_hash &= SIG_BUCKET_64KB_HASH_MASK; in atr_compute_signature_hash()
[all …]
/dpdk/drivers/net/ixgbe/base/
H A Dixgbe_82599.c1416 bucket_hash ^= lo_hash_dword >> n; \
1422 bucket_hash ^= hi_hash_dword >> n; \
1442 u32 sig_hash = 0, bucket_hash = 0, common_hash = 0; in ixgbe_atr_compute_sig_hash_82599() local
1484 bucket_hash ^= common_hash; in ixgbe_atr_compute_sig_hash_82599()
1485 bucket_hash &= IXGBE_ATR_HASH_MASK; in ixgbe_atr_compute_sig_hash_82599()
1491 return sig_hash ^ bucket_hash; in ixgbe_atr_compute_sig_hash_82599()
1562 bucket_hash ^= lo_hash_dword >> n; \
1564 bucket_hash ^= hi_hash_dword >> n; \
1583 u32 bucket_hash = 0; in ixgbe_atr_compute_perfect_hash_82599() local
1623 input->formatted.bkt_hash = bucket_hash & 0x1FFF; in ixgbe_atr_compute_perfect_hash_82599()
/dpdk/drivers/net/ixgbe/
H A Dixgbe_fdir.c855 uint32_t bucket_hash, sig_hash; in atr_compute_sig_hash_82599() local
858 bucket_hash = ixgbe_atr_compute_hash_82599(input, in atr_compute_sig_hash_82599()
862 bucket_hash = ixgbe_atr_compute_hash_82599(input, in atr_compute_sig_hash_82599()
866 bucket_hash = ixgbe_atr_compute_hash_82599(input, in atr_compute_sig_hash_82599()
873 return (sig_hash << IXGBE_FDIRHASH_SIG_SW_INDEX_SHIFT) | bucket_hash; in atr_compute_sig_hash_82599()