Lines Matching refs:removed
485 static void RepackEntries(bool compress_entries, ArrayRef<const void*> removed) in RepackEntries() argument
487 DCHECK(std::is_sorted(removed.begin(), removed.end())); in RepackEntries()
503 if (!compress_entries && it->is_compressed_ && removed.empty()) { in RepackEntries()
524 auto removed_begin = std::lower_bound(removed.begin(), removed.end(), group_ptr); in RepackEntries()
525 auto removed_end = std::lower_bound(removed.begin(), removed.end(), group_end); in RepackEntries()
616 std::vector<const void*>& removed = g_removed_jit_functions; in RepackNativeDebugInfoForJitLocked() local
617 std::sort(removed.begin(), removed.end()); in RepackNativeDebugInfoForJitLocked()
618 RepackEntries(/*compress_entries=*/ true, ArrayRef<const void*>(removed)); in RepackNativeDebugInfoForJitLocked()
623 if (!it->allow_packing_ && std::binary_search(removed.begin(), removed.end(), it->addr_)) { in RepackNativeDebugInfoForJitLocked()
629 removed.clear(); in RepackNativeDebugInfoForJitLocked()
630 removed.shrink_to_fit(); in RepackNativeDebugInfoForJitLocked()