Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1841)

Unified Diff: crosstest/mem_intrin.h

Issue 1273153002: Subzero. Native 64-bit int arithmetic on x86-64. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Removes the x8664-specific xtest target. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: crosstest/mem_intrin.h
diff --git a/crosstest/mem_intrin.h b/crosstest/mem_intrin.h
index 70f02ae7394da5292736e3fc44daf410239d5185..f04e1b2c5662be2eb21f059b25472a201eb4ddc6 100644
--- a/crosstest/mem_intrin.h
+++ b/crosstest/mem_intrin.h
@@ -4,10 +4,11 @@
* There is no include guard since this will be included multiple times,
* under different namespaces.
*/
+#include "xdefs.h"
-int memcpy_test(uint8_t *buf, uint8_t *buf2, uint8_t init, size_t length);
-int memmove_test(uint8_t *buf, uint8_t *buf2, uint8_t init, size_t length);
-int memset_test(uint8_t *buf, uint8_t *buf2, uint8_t init, size_t length);
+int memcpy_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length);
+int memmove_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length);
+int memset_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length);
int memcpy_test_fixed_len(uint8_t init);
int memmove_test_fixed_len(uint8_t init);

Powered by Google App Engine
This is Rietveld 408576698