Lines Matching refs:free_slot
503 int slot, next_slot, free_slot, i, j; in assoc_array_insert_into_terminal_node() local
516 free_slot = -1; in assoc_array_insert_into_terminal_node()
524 free_slot = i; in assoc_array_insert_into_terminal_node()
541 if (free_slot >= 0) { in assoc_array_insert_into_terminal_node()
542 pr_devel("insert in free slot %d\n", free_slot); in assoc_array_insert_into_terminal_node()
543 edit->leaf_p = &node->slots[free_slot]; in assoc_array_insert_into_terminal_node()
663 free_slot = -1; in assoc_array_insert_into_terminal_node()
673 free_slot++; in assoc_array_insert_into_terminal_node()
674 } while (new_n0->slots[free_slot] != NULL); in assoc_array_insert_into_terminal_node()
675 new_n0->slots[free_slot] = node->slots[i]; in assoc_array_insert_into_terminal_node()
679 pr_devel("filtered: f=%x n=%x\n", free_slot, next_slot); in assoc_array_insert_into_terminal_node()
683 free_slot++; in assoc_array_insert_into_terminal_node()
684 } while (new_n0->slots[free_slot] != NULL); in assoc_array_insert_into_terminal_node()
685 edit->leaf_p = &new_n0->slots[free_slot]; in assoc_array_insert_into_terminal_node()