Lines Matching refs:dst
190 #define pldm_msgbuf_extract_typecheck(ty, fn, dst, ...) \ argument
191 pldm_msgbuf_typecheck_##ty<decltype(dst)>(__VA_ARGS__)
193 #define pldm_msgbuf_extract_uint8(ctx, dst) \ argument
194 pldm_msgbuf_extract_typecheck(uint8_t, pldm__msgbuf_extract_uint8, dst, \
195 ctx, (void*)&(dst))
197 #define pldm_msgbuf_extract_int8(ctx, dst) \ argument
198 pldm_msgbuf_extract_typecheck(int8_t, pldm__msgbuf_extract_int8, dst, ctx, \
199 (void*)&(dst))
201 #define pldm_msgbuf_extract_uint16(ctx, dst) \ argument
202 pldm_msgbuf_extract_typecheck(uint16_t, pldm__msgbuf_extract_uint16, dst, \
203 ctx, (void*)&(dst))
205 #define pldm_msgbuf_extract_int16(ctx, dst) \ argument
206 pldm_msgbuf_extract_typecheck(int16_t, pldm__msgbuf_extract_int16, dst, \
207 ctx, (void*)&(dst))
209 #define pldm_msgbuf_extract_uint32(ctx, dst) \ argument
210 pldm_msgbuf_extract_typecheck(uint32_t, pldm__msgbuf_extract_uint32, dst, \
211 ctx, (void*)&(dst))
213 #define pldm_msgbuf_extract_int32(ctx, dst) \ argument
214 pldm_msgbuf_extract_typecheck(int32_t, pldm__msgbuf_extract_int32, dst, \
215 ctx, (void*)&(dst))
217 #define pldm_msgbuf_extract_real32(ctx, dst) \ argument
218 pldm_msgbuf_extract_typecheck(real32_t, pldm__msgbuf_extract_real32, dst, \
219 ctx, (void*)&(dst))