byteorder.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_BYTEORDER_H
  2. #define _ASM_IA64_BYTEORDER_H
  3. /*
  4.  * Copyright (C) 1998, 1999 Hewlett-Packard Co
  5.  * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  6.  */
  7. #include <asm/types.h>
  8. static __inline__ __const__ __u64
  9. __ia64_swab64 (__u64 x)
  10. {
  11. __u64 result;
  12. __asm__ ("mux1 %0=%1,@rev" : "=r" (result) : "r" (x));
  13. return result;
  14. }
  15. static __inline__ __const__ __u32
  16. __ia64_swab32 (__u32 x)
  17. {
  18. return __ia64_swab64(x) >> 32;
  19. }
  20. static __inline__ __const__ __u16
  21. __ia64_swab16(__u16 x)
  22. {
  23. return __ia64_swab64(x) >> 48;
  24. }
  25. #define __arch__swab64(x) __ia64_swab64(x)
  26. #define __arch__swab32(x) __ia64_swab32(x)
  27. #define __arch__swab16(x) __ia64_swab16(x)
  28. #define __BYTEORDER_HAS_U64__
  29. #include <linux/byteorder/little_endian.h>
  30. #endif /* _ASM_IA64_BYTEORDER_H */