yuzu-android/src
Lioncash 4afb05d0cc fsp_srv: Emplace entries first when building index instead of emplacing last
The current way were doing it would require copying a 768 character
buffer (part of the Entry struct) to the new element in the vector.
Given it's a plain array, std::move won't eliminate that.

Instead, we can emplace an instance directly into the destination buffer
and then fill it out, avoiding the need to perform any unnecessary
copies.

Given this is done in a loop, we can request the destination to allocate
all of the necessary memory ahead of time, avoiding the need to
potentially keep reallocating over and over on every few insertions into
the vector.
2018-08-08 18:51:41 -04:00
..
audio_core
common Merge pull request #966 from lioncash/modernize 2018-08-08 15:28:34 -04:00
core fsp_srv: Emplace entries first when building index instead of emplacing last 2018-08-08 18:51:41 -04:00
input_common
tests
video_core
yuzu Merge pull request #850 from DarkLordZach/icon-meta 2018-08-08 12:27:19 -04:00
yuzu_cmd
.clang-format
CMakeLists.txt