pvrusb2-util.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. *
  3. *
  4. * Copyright (C) 2005 Mike Isely <isely@pobox.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. */
  16. #ifndef __PVRUSB2_UTIL_H
  17. #define __PVRUSB2_UTIL_H
  18. #define PVR2_DECOMPOSE_LE(t,i,d) \
  19. do { \
  20. (t)[i] = (d) & 0xff;\
  21. (t)[i+1] = ((d) >> 8) & 0xff;\
  22. (t)[i+2] = ((d) >> 16) & 0xff;\
  23. (t)[i+3] = ((d) >> 24) & 0xff;\
  24. } while(0)
  25. #define PVR2_DECOMPOSE_BE(t,i,d) \
  26. do { \
  27. (t)[i+3] = (d) & 0xff;\
  28. (t)[i+2] = ((d) >> 8) & 0xff;\
  29. (t)[i+1] = ((d) >> 16) & 0xff;\
  30. (t)[i] = ((d) >> 24) & 0xff;\
  31. } while(0)
  32. #define PVR2_COMPOSE_LE(t,i) \
  33. ((((u32)((t)[i+3])) << 24) | \
  34. (((u32)((t)[i+2])) << 16) | \
  35. (((u32)((t)[i+1])) << 8) | \
  36. ((u32)((t)[i])))
  37. #define PVR2_COMPOSE_BE(t,i) \
  38. ((((u32)((t)[i])) << 24) | \
  39. (((u32)((t)[i+1])) << 16) | \
  40. (((u32)((t)[i+2])) << 8) | \
  41. ((u32)((t)[i+3])))
  42. #endif /* __PVRUSB2_UTIL_H */