nn::nstd::ARMv6::MemMove Function

Syntax

void MemMove(
     void * dstp,
     const void * srcp,
     size_t size
);

Arguments

Name Description
out dstp Copy destination address.
in srcp Copy source address.
in size The number of bytes to copy.

Return Values

None.

Description

Uses the CPU to perform memory copy. The function behaves normally even if the copy source region overlaps the copy destination region.

When alignment is undefined, this function is faster than std::memmove because at runtime it selects the optimal method based on the alignment of the copy source/destination addresses. For u32* and structures and other cases where alignment is determined statically, use std::memmove.

See Also

MemCpy


CONFIDENTIAL