Lines Matching refs:left
496 unsigned left, right, prev, dib;
507 left = idx;
509 for (right = next_idx(h, left); ; right = next_idx(h, right)) {
517 assert(left != right);
535 /* Now shift all buckets in the interval (left, right) one step backwards */
536 for (prev = left, left = next_idx(h, left); left != right;
537 prev = left, left = next_idx(h, left)) {
538 dib = bucket_calculate_dib(h, left, dibs[left]);
540 bucket_move_entry(h, NULL, left, prev);
570 * a backward shift. The next entry may thus move one bucket to the left.
627 * a backward shift. The next entry may thus move one bucket to the left.
914 * Returns: true if it left a displaced entry to rehash next in IDX_PUT,