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?
It's generally faster not to make a copy at all. Whether you can adapt your function to not copy I don't know but it's worth looking in to.