Searched refs:token_to_insert_before (Results 1 – 1 of 1) sorted by relevance
616 token_idx_t token_to_insert_before = queue2->token_q_head, token_to_insert_after; in vm_purgeable_token_choose_and_delete_ripe() local618 while (token_to_insert_before != 0 && count > tokens[token_to_insert_before].count) { in vm_purgeable_token_choose_and_delete_ripe()619 count -= tokens[token_to_insert_before].count; in vm_purgeable_token_choose_and_delete_ripe()620 token_to_insert_before = tokens[token_to_insert_before].next; in vm_purgeable_token_choose_and_delete_ripe()626 if ((token_to_insert_before == queue2->token_q_unripe) || (queue2->token_q_unripe == 0)) { in vm_purgeable_token_choose_and_delete_ripe()637 if (token_to_insert_before != 0) { in vm_purgeable_token_choose_and_delete_ripe()638 token_to_insert_after = tokens[token_to_insert_before].prev; in vm_purgeable_token_choose_and_delete_ripe()640 tokens[token].next = token_to_insert_before; in vm_purgeable_token_choose_and_delete_ripe()641 tokens[token_to_insert_before].prev = token; in vm_purgeable_token_choose_and_delete_ripe()643 assert(tokens[token_to_insert_before].count >= count); in vm_purgeable_token_choose_and_delete_ripe()[all …]