Lines Matching refs:free_slot
490 int slot, next_slot, free_slot, i, j; in assoc_array_insert_into_terminal_node() local
503 free_slot = -1; in assoc_array_insert_into_terminal_node()
511 free_slot = i; in assoc_array_insert_into_terminal_node()
528 if (free_slot >= 0) { in assoc_array_insert_into_terminal_node()
529 pr_devel("insert in free slot %d\n", free_slot); in assoc_array_insert_into_terminal_node()
530 edit->leaf_p = &node->slots[free_slot]; in assoc_array_insert_into_terminal_node()
660 free_slot = -1; in assoc_array_insert_into_terminal_node()
670 free_slot++; in assoc_array_insert_into_terminal_node()
671 } while (new_n0->slots[free_slot] != NULL); in assoc_array_insert_into_terminal_node()
672 new_n0->slots[free_slot] = node->slots[i]; in assoc_array_insert_into_terminal_node()
676 pr_devel("filtered: f=%x n=%x\n", free_slot, next_slot); in assoc_array_insert_into_terminal_node()
680 free_slot++; in assoc_array_insert_into_terminal_node()
681 } while (new_n0->slots[free_slot] != NULL); in assoc_array_insert_into_terminal_node()
682 edit->leaf_p = &new_n0->slots[free_slot]; in assoc_array_insert_into_terminal_node()