mmx.h 298 B

123456789101112131415
  1. #ifndef _ASM_X86_MMX_H
  2. #define _ASM_X86_MMX_H
  3. /*
  4. * MMX 3Dnow! helper operations
  5. */
  6. #include <linux/types.h>
  7. extern void *_mmx_memcpy(void *to, const void *from, size_t size);
  8. extern void mmx_clear_page(void *page);
  9. extern void mmx_copy_page(void *to, void *from);
  10. #endif /* _ASM_X86_MMX_H */