Lines Matching refs:free_slot
486 int slot, next_slot, free_slot, i, j; in assoc_array_insert_into_terminal_node() local
499 free_slot = -1; in assoc_array_insert_into_terminal_node()
507 free_slot = i; in assoc_array_insert_into_terminal_node()
524 if (free_slot >= 0) { in assoc_array_insert_into_terminal_node()
525 pr_devel("insert in free slot %d\n", free_slot); in assoc_array_insert_into_terminal_node()
526 edit->leaf_p = &node->slots[free_slot]; in assoc_array_insert_into_terminal_node()
656 free_slot = -1; in assoc_array_insert_into_terminal_node()
666 free_slot++; in assoc_array_insert_into_terminal_node()
667 } while (new_n0->slots[free_slot] != NULL); in assoc_array_insert_into_terminal_node()
668 new_n0->slots[free_slot] = node->slots[i]; in assoc_array_insert_into_terminal_node()
672 pr_devel("filtered: f=%x n=%x\n", free_slot, next_slot); in assoc_array_insert_into_terminal_node()
676 free_slot++; in assoc_array_insert_into_terminal_node()
677 } while (new_n0->slots[free_slot] != NULL); in assoc_array_insert_into_terminal_node()
678 edit->leaf_p = &new_n0->slots[free_slot]; in assoc_array_insert_into_terminal_node()