Lines Matching defs:pl
41 #define PM_PACK_PAYLOAD1(pl, arg0) { \
42 pl[0] = (uint32_t)(arg0); \
45 #define PM_PACK_PAYLOAD2(pl, arg0, arg1) { \
46 pl[1] = (uint32_t)(arg1); \
47 PM_PACK_PAYLOAD1(pl, arg0); \
50 #define PM_PACK_PAYLOAD3(pl, arg0, arg1, arg2) { \
51 pl[2] = (uint32_t)(arg2); \
52 PM_PACK_PAYLOAD2(pl, arg0, arg1); \
55 #define PM_PACK_PAYLOAD4(pl, arg0, arg1, arg2, arg3) { \
56 pl[3] = (uint32_t)(arg3); \
57 PM_PACK_PAYLOAD3(pl, arg0, arg1, arg2); \
60 #define PM_PACK_PAYLOAD5(pl, arg0, arg1, arg2, arg3, arg4) { \
61 pl[4] = (uint32_t)(arg4); \
62 PM_PACK_PAYLOAD4(pl, arg0, arg1, arg2, arg3); \
65 #define PM_PACK_PAYLOAD6(pl, arg0, arg1, arg2, arg3, arg4, arg5) { \
66 pl[5] = (uint32_t)(arg5); \
67 PM_PACK_PAYLOAD5(pl, arg0, arg1, arg2, arg3, arg4); \