Lines Matching defs:period
29 * a fixed pattern with periodicity equal to \p period.
31 * If \p index is specified to be equal to \p period, a 2-way hashing table
35 * p_0 = ceil(period / 2) / period
36 * p_1 = floor(period / 2) / period
38 * If \p index is even and less than \p period, a 3-way hashing table will be
42 * p_0 = (ceil(period / 2) - 1) / period
43 * p_1 = floor(period / 2) / period
44 * p_2 = 1 / period
54 unsigned period, unsigned index, bool flip,
59 const unsigned k = (i + j) % period;