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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __UDF_ENDIAN_H
  2. #define __UDF_ENDIAN_H
  3. #ifndef __KERNEL__ 
  4. #include <sys/types.h>
  5. #if __BYTE_ORDER == 0
  6. #error "__BYTE_ORDER must be defined"
  7. #elif __BYTE_ORDER == __BIG_ENDIAN
  8. #define le16_to_cpu(x) 
  9. ((Uint16)((((Uint16)(x) & 0x00FFU) << 8) | 
  10.   (((Uint16)(x) & 0xFF00U) >> 8)))
  11.  
  12. #define le32_to_cpu(x) 
  13. ((Uint32)((((Uint32)(x) & 0x000000FFU) << 24) | 
  14.   (((Uint32)(x) & 0x0000FF00U) <<  8) | 
  15.   (((Uint32)(x) & 0x00FF0000U) >>  8) | 
  16.   (((Uint32)(x) & 0xFF000000U) >> 24)))
  17. #define le64_to_cpu(x) 
  18. ((Uint64)((((Uint64)(x) & 0x00000000000000FFULL) << 56) | 
  19.   (((Uint64)(x) & 0x000000000000FF00ULL) << 40) | 
  20.   (((Uint64)(x) & 0x0000000000FF0000ULL) << 24) | 
  21.   (((Uint64)(x) & 0x00000000FF000000ULL) <<  8) | 
  22.   (((Uint64)(x) & 0x000000FF00000000ULL) >>  8) | 
  23.   (((Uint64)(x) & 0x0000FF0000000000ULL) >> 24) | 
  24.   (((Uint64)(x) & 0x00FF000000000000ULL) >> 40) | 
  25.   (((Uint64)(x) & 0xFF00000000000000ULL) >> 56)))
  26. #define cpu_to_le16(x) (le16_to_cpu(x))
  27. #define cpu_to_le32(x) (le32_to_cpu(x))
  28. #define cpu_to_le64(x) (le64_to_cpu(x))
  29. #else /* __BYTE_ORDER == __LITTLE_ENDIAN */
  30. #define le16_to_cpu(x) (x)
  31. #define le32_to_cpu(x) (x)
  32. #define le64_to_cpu(x) (x)
  33. #define cpu_to_le16(x) (x)
  34. #define cpu_to_le32(x) (x)
  35. #define cpu_to_le64(x) (x)
  36. #endif /* __BYTE_ORDER == 0 */
  37. #include <string.h>
  38. #else /* __KERNEL__ */
  39. #include <asm/byteorder.h>
  40. #include <linux/string.h>
  41. #endif /* ! __KERNEL__ */
  42. static inline lb_addr lelb_to_cpu(lb_addr in)
  43. {
  44. lb_addr out;
  45. out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum);
  46. out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum);
  47. return out;
  48. }
  49. static inline lb_addr cpu_to_lelb(lb_addr in)
  50. {
  51. lb_addr out;
  52. out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum);
  53. out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum);
  54. return out;
  55. }
  56. static inline timestamp lets_to_cpu(timestamp in)
  57. {
  58. timestamp out;
  59. memcpy(&out, &in, sizeof(timestamp));
  60. out.typeAndTimezone = le16_to_cpu(in.typeAndTimezone);
  61. out.year = le16_to_cpu(in.year);
  62. return out;
  63. }
  64. static inline short_ad lesa_to_cpu(short_ad in)
  65. {
  66. short_ad out;
  67. out.extLength = le32_to_cpu(in.extLength);
  68. out.extPosition = le32_to_cpu(in.extPosition);
  69. return out;
  70. }
  71. static inline short_ad cpu_to_lesa(short_ad in)
  72. {
  73. short_ad out;
  74. out.extLength = cpu_to_le32(in.extLength);
  75. out.extPosition = cpu_to_le32(in.extPosition);
  76. return out;
  77. }
  78. static inline long_ad lela_to_cpu(long_ad in)
  79. {
  80. long_ad out;
  81. out.extLength = le32_to_cpu(in.extLength);
  82. out.extLocation = lelb_to_cpu(in.extLocation);
  83. return out;
  84. }
  85. static inline long_ad cpu_to_lela(long_ad in)
  86. {
  87. long_ad out;
  88. out.extLength = cpu_to_le32(in.extLength);
  89. out.extLocation = cpu_to_lelb(in.extLocation);
  90. return out;
  91. }
  92. static inline extent_ad leea_to_cpu(extent_ad in)
  93. {
  94. extent_ad out;
  95. out.extLength = le32_to_cpu(in.extLength);
  96. out.extLocation = le32_to_cpu(in.extLocation);
  97. return out;
  98. }
  99. static inline timestamp cpu_to_lets(timestamp in)
  100. {
  101. timestamp out;
  102. memcpy(&out, &in, sizeof(timestamp));
  103. out.typeAndTimezone = cpu_to_le16(in.typeAndTimezone);
  104. out.year = cpu_to_le16(in.year);
  105. return out;
  106. }
  107. #endif /* __UDF_ENDIAN_H */