Lines Matching full:pb
76 uint32_t *pb, unsigned check_align) in __rte_jhash_2hashes() argument
82 c += *pb; in __rte_jhash_2hashes()
135 *pb = b; in __rte_jhash_2hashes()
203 *pb = b; in __rte_jhash_2hashes()
211 *pb = b; in __rte_jhash_2hashes()
216 * pc and pb must be non-null, and *pc and *pb must both be initialized
217 * with seeds. If you pass in (*pb)=0, the output (*pc) will be
226 * @param pb
230 rte_jhash_2hashes(const void *key, uint32_t length, uint32_t *pc, uint32_t *pb) in rte_jhash_2hashes() argument
232 __rte_jhash_2hashes(key, length, pc, pb, 1); in rte_jhash_2hashes()
237 * pc and pb must be non-null, and *pc and *pb must both be initialized
238 * with seeds. If you pass in (*pb)=0, the output (*pc) will be
247 * @param pb
251 rte_jhash_32b_2hashes(const uint32_t *k, uint32_t length, uint32_t *pc, uint32_t *pb) in rte_jhash_32b_2hashes() argument
253 __rte_jhash_2hashes((const void *) k, (length << 2), pc, pb, 0); in rte_jhash_32b_2hashes()