Searched refs:bloom_filter (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/src/shared/
H A Dhndfwd.c216 __wofa_bloom_lkup16(const uint32 * bloom_filter, const uint16 hash16) argument
218 return ((*(bloom_filter + (hash16 >> 5))) & (1U << (hash16 & 31)));
222 __wofa_bloom_set16(uint32 * bloom_filter, const uint16 hash16) argument
224 *(bloom_filter + (hash16 >> 5)) |= (1U << (hash16 & 31));
228 __wofa_bloom_clr16(uint32 * bloom_filter, const uint16 hash16) argument
230 *(bloom_filter + (hash16 >> 5)) &= ~(1U << (hash16 & 31));
437 { /* Update bloom_filter */

Completed in 31 milliseconds