Searched refs:token_to_insert_before (Results 1 – 1 of 1) sorted by relevance
613 token_idx_t token_to_insert_before = queue2->token_q_head, token_to_insert_after; in vm_purgeable_token_choose_and_delete_ripe() local615 while (token_to_insert_before != 0 && count > tokens[token_to_insert_before].count) { in vm_purgeable_token_choose_and_delete_ripe()616 count -= tokens[token_to_insert_before].count; in vm_purgeable_token_choose_and_delete_ripe()617 token_to_insert_before = tokens[token_to_insert_before].next; in vm_purgeable_token_choose_and_delete_ripe()623 if ((token_to_insert_before == queue2->token_q_unripe) || (queue2->token_q_unripe == 0)) { in vm_purgeable_token_choose_and_delete_ripe()634 if (token_to_insert_before != 0) { in vm_purgeable_token_choose_and_delete_ripe()635 token_to_insert_after = tokens[token_to_insert_before].prev; in vm_purgeable_token_choose_and_delete_ripe()637 tokens[token].next = token_to_insert_before; in vm_purgeable_token_choose_and_delete_ripe()638 tokens[token_to_insert_before].prev = token; in vm_purgeable_token_choose_and_delete_ripe()640 assert(tokens[token_to_insert_before].count >= count); in vm_purgeable_token_choose_and_delete_ripe()[all …]