dolphin/Source
Lioncash 6cb3389696 CodeTrace: Use std::set::lower_bound() over std::lower_bound()
std::set's lower_bound() is optimized better than the generic
implementation of std::lower_bound()

std::lower_bound() works best on random access iterators, where the
number of comparisons can be logarithmic. However, since std::set's
iterators are bidirectional iterators, the comparisons will actually be
linear in practice when using std::lower_bound().

So, we can use std::set's version which is guaranteed to be logarithmic.
2024-01-23 17:21:22 -05:00
..
Android Merge pull request #12375 from JosJuice/android-gate-size-crash 2024-01-07 19:34:06 +01:00
Core CodeTrace: Use std::set::lower_bound() over std::lower_bound() 2024-01-23 17:21:22 -05:00
DSPSpy
DSPTool
PCH
UnitTests Core/HW/MMIO: Pass System through Read() and Write(). 2024-01-12 08:28:01 +01:00
VSProps Remove redundant 32-bit code 2023-11-28 23:03:26 +11:00
.clang-format
CMakeLists.txt
dolphin-emu.sln Fix Windows ARM64 debug build errors 2023-12-17 11:31:28 -08:00