Home
last modified time | relevance | path

Searched refs:CopyAlignedBlocks (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/libc/test/src/string/memory_utils/
Dmemcpy_utils_test.cpp163 TEST(MemcpyUtilsTest, CopyAlignedBlocks) { in TEST() argument
168 CopyAlignedBlocks<4>(I(0), I(0), 4); in TEST()
177 CopyAlignedBlocks<4>(I(0), I(0), 8); in TEST()
188 CopyAlignedBlocks<4>(I(0), I(0), 13); in TEST()
199 CopyAlignedBlocks<4>(I(1), I(0), 13); in TEST()
209 CopyAlignedBlocks<4>(I(1), I(0), 11); in TEST()
220 CopyAlignedBlocks<32>(I(alignment), I(0), count); in TEST()
/external/llvm-project/libc/src/string/
Dmemcpy.cpp55 return CopyAlignedBlocks<32>(dst, src, count); in memcpy_impl()
/external/llvm-project/libc/src/string/x86/
Dmemcpy.cpp79 return CopyAlignedBlocks<BEST_SIZE>(dst, src, count); in memcpy_x86()
/external/llvm-project/libc/src/string/memory_utils/
Dmemcpy_utils.h88 static void CopyAlignedBlocks(char *__restrict dst, const char *__restrict src, in CopyAlignedBlocks() function