byteorder.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_BYTEORDER_H
  2. #define __ASM_SH_BYTEORDER_H
  3. /*
  4.  * Copyright (C) 1999  Niibe Yutaka
  5.  */
  6. #include <asm/types.h>
  7. static __inline__ __const__ __u32 ___arch__swab32(__u32 x)
  8. {
  9. __asm__("swap.b %0, %0nt"
  10. "swap.w %0, %0nt"
  11. "swap.b %0, %0"
  12. : "=r" (x)
  13. : "0" (x));
  14. return x;
  15. }
  16. static __inline__ __const__ __u16 ___arch__swab16(__u16 x)
  17. {
  18. __asm__("swap.b %0, %0"
  19. : "=r" (x)
  20. :  "0" (x));
  21. return x;
  22. }
  23. #define __arch__swab32(x) ___arch__swab32(x)
  24. #define __arch__swab16(x) ___arch__swab16(x)
  25. #if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
  26. #  define __BYTEORDER_HAS_U64__
  27. #  define __SWAB_64_THRU_32__
  28. #endif
  29. #ifdef __LITTLE_ENDIAN__
  30. #include <linux/byteorder/little_endian.h>
  31. #else
  32. #include <linux/byteorder/big_endian.h>
  33. #endif
  34. #endif /* __ASM_SH_BYTEORDER_H */