You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

little_bswap.h 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef ETHERBOOT_LITTLE_BSWAP_H
  2. #define ETHERBOOT_LITTLE_BSWAP_H
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. #define htonll(x) __bswap_64(x)
  5. #define ntohll(x) __bswap_64(x)
  6. #define ntohl(x) __bswap_32(x)
  7. #define htonl(x) __bswap_32(x)
  8. #define ntohs(x) __bswap_16(x)
  9. #define htons(x) __bswap_16(x)
  10. #define cpu_to_le64(x) (x)
  11. #define cpu_to_le32(x) (x)
  12. #define cpu_to_le16(x) (x)
  13. #define cpu_to_be64(x) __bswap_64(x)
  14. #define cpu_to_be32(x) __bswap_32(x)
  15. #define cpu_to_be16(x) __bswap_16(x)
  16. #define le64_to_cpu(x) (x)
  17. #define le32_to_cpu(x) (x)
  18. #define le16_to_cpu(x) (x)
  19. #define be64_to_cpu(x) __bswap_64(x)
  20. #define be32_to_cpu(x) __bswap_32(x)
  21. #define be16_to_cpu(x) __bswap_16(x)
  22. #define cpu_to_le64s(x) do {} while (0)
  23. #define cpu_to_le32s(x) do {} while (0)
  24. #define cpu_to_le16s(x) do {} while (0)
  25. #define cpu_to_be64s(x) __bswap_64s(x)
  26. #define cpu_to_be32s(x) __bswap_32s(x)
  27. #define cpu_to_be16s(x) __bswap_16s(x)
  28. #define le64_to_cpus(x) do {} while (0)
  29. #define le32_to_cpus(x) do {} while (0)
  30. #define le16_to_cpus(x) do {} while (0)
  31. #define be64_to_cpus(x) __bswap_64s(x)
  32. #define be32_to_cpus(x) __bswap_32s(x)
  33. #define be16_to_cpus(x) __bswap_16s(x)
  34. #endif /* ETHERBOOT_LITTLE_BSWAP_H */