You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yuzu/src
Lioncash 6467b01de2 partition_data_manager: Reserve and insert data within output vector in DecryptPackage2()
We can just reserve the memory then perform successive insertions
instead of needing to use memcpy. This also avoids the need to zero out
the output vector's memory before performing the insertions.

We can also std::move the output std::vector into the destination so
that we don't need to make a completely new copy of the vector, getting
rid of an unnecessary allocation.

Additionally, we can use iterators to determine the beginning and end
ranges of the std::vector instances that comprise the output vector, as
the end of one range just becomes the beginning for the next successive
range, and since std::vector's iterator constructor copies data within
the range [begin, end), this is more straightforward and gets rid of the
need to have an offset variable that keeps getting incremented to
determine where to do the next std::memcpy.
7 years ago
..
audio_core EffectOutStatus padding is now in hex 7 years ago
common Merge pull request #1424 from DarkLordZach/ips-witch 7 years ago
core partition_data_manager: Reserve and insert data within output vector in DecryptPackage2() 7 years ago
input_common Port #4141 from citra: Joystick hotplug support (#1275) 7 years ago
tests kernel/thread: Use a regular pointer for the owner/current process 7 years ago
video_core Implemented helper function to correctly calculate a texture's size 7 years ago
web_service Review comments - part 5 7 years ago
yuzu Merge pull request #1409 from DarkLordZach/key-derivation 7 years ago
yuzu_cmd implemented touch in Qt and SDL 7 years ago
.clang-format
CMakeLists.txt Port web_service from Citra 7 years ago