Home | History | Annotate | Download | only in memtest

Lines Matching refs:MEMCPY

40 #define MEMCPY  memcpy
75 " memcpy [perf [fast] | test]\n"
113 else if (!strcmp(argv[1], "memcpy")) err = memcpy_test(argc-1, argv+1);
131 #pragma mark memcpy
156 printf("memcpy() performance test is running, please wait...\n");
192 memcpy(dst, src, size); // just make sure to load the caches I/D
196 MEMCPY(ddd, sss+offset, size);
211 printf("memcpy() validation test is running, please wait...\n");
242 MEMCPY(s, d, size);
244 printf("*** memcpy(%p,%p,%zd) destination != source\n",s,d,size);
249 printf("*** memcpy(%p,%p,%zd) clobbered past end of destination!\n",s,d,size);
254 printf("*** memcpy(%p,%p,%zd) clobbered before start of destination!\n",s,d,size);
449 memcpy(ddd, sss+offset, size); // just make sure to load the caches I/D