Lines Matching refs:id
53 uint32_t id = to_remove->GetBlockId(); in RemoveBlock() local
54 if (unreachable_blocks_.IsBitSet(id)) { in RemoveBlock()
62 unreachable_blocks_.SetBit(id); in RemoveBlock()
121 std::for_each(current_path.cbegin(), current_path.cend(), [&](auto id) { in Prune() argument
122 DCHECK_GT(last_succ_seen[id], kUnvisitedSuccIdx) << id; in Prune()
123 DCHECK_LT(last_succ_seen[id], static_cast<ssize_t>(kMaxFilterableSuccessors)) << id; in Prune()
149 for (uint32_t id : current_path) { in Prune() local
150 DCHECK_GT(last_succ_seen[id], kUnvisitedSuccIdx); in Prune()
151 DCHECK_LT(last_succ_seen[id], static_cast<ssize_t>(kMaxFilterableSuccessors)); in Prune()
152 results[id].set(last_succ_seen[id]); in Prune()
161 uint32_t id = cur_block->GetBlockId(); in Prune() local
167 if (visiting.IsBitSet(id)) { in Prune()
172 std::bitset<kMaxFilterableSuccessors>& result = results[id]; in Prune()
178 } else if (last_succ_seen[id] == kMaxFilterableSuccessors) { in Prune()
187 ssize_t* cur_succ = &last_succ_seen[id]; in Prune()