I have a function that is doing memcpy, but it’s taking up an enormous amount of cycles. Is there a faster alternative/approach than using memcpy to move a piece of memory?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
memcpyis likely to be the fastest way you can copy bytes around in memory. If you need something faster – try figuring out a way of not copying things around, e.g. swap pointers only, not the data itself.