Home | History | Annotate | Download | only in common

Lines Matching defs:jump

315  * "jump" value (moduloing by the length again to keep it within
326 * otherwise we are not guaranteed that the jump value (the secondary
335 int32_t jump = 0; /* lazy evaluate */
358 if (jump == 0) { /* lazy compute jump */
359 /* The jump value must be relatively prime to the table
363 jump = (hashcode % (hash->length - 1)) + 1;
365 theIndex = (theIndex + jump) % hash->length;