Go to the source code of this file.
#define PVR2_COMPOSE_BE |
( |
|
t, |
|
|
|
i |
|
) |
| |
#define PVR2_COMPOSE_LE |
( |
|
t, |
|
|
|
i |
|
) |
| |
#define PVR2_DECOMPOSE_BE |
( |
|
t, |
|
|
|
i, |
|
|
|
d |
|
) |
| |
Value:do { \
(
t)[
i+2] = ((
d) >> 8) & 0xff;\
(
t)[
i+1] = ((
d) >> 16) & 0xff;\
(
t)[
i] = ((
d) >> 24) & 0xff;\
} while(0)
Definition at line 31 of file pvrusb2-util.h.
#define PVR2_DECOMPOSE_LE |
( |
|
t, |
|
|
|
i, |
|
|
|
d |
|
) |
| |
Value:do { \
(
t)[
i+1] = ((
d) >> 8) & 0xff;\
(
t)[
i+2] = ((
d) >> 16) & 0xff;\
(
t)[
i+3] = ((
d) >> 24) & 0xff;\
} while(0)
Definition at line 23 of file pvrusb2-util.h.