summaryrefslogtreecommitdiffstats
path: root/src/common/hex_util.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-06-12common/hex_util: Reserve std::string memory ahead of timeLioncash1-0/+5
Avoids potentially performing multiple reallocations (depending on the size of the input data) by reserving the necessary amount of memory ahead of time. This is trivially doable, so there's no harm in it.
2019-06-12common/hex_util: Combine HexVectorToString() and HexArrayToString()Lioncash1-4/+7
These can be generified together by using a concept type to designate them. This also has the benefit of not making copies of potentially very large arrays.
2018-10-04ips_layer: Deduplicate resource usageZach Hilman1-1/+1
2018-10-04hex_util: Add HexVectorToString and HexStringToVectorZach Hilman1-0/+5
Converts between bytes and strings when the size is not known at compile time.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-6/+6
2018-08-16common: Namespace hex_util.h/.cppLioncash1-0/+4
It's in the common code, so it should be under the Common namespace like everything else.
2018-08-12file_sys: Comply to style guidelinesZach Hilman1-0/+2
2018-08-12common: Move hex string processing to separate fileZach Hilman1-0/+35