Lines Matching refs:f
845 #define image_get_hdr_l(f) \ argument
846 static inline uint32_t image_get_##f(const struct legacy_img_hdr *hdr) \
848 return uimage_to_cpu(hdr->ih_##f); \
858 #define image_get_hdr_b(f) \ in image_get_hdr_l() argument
859 static inline uint8_t image_get_##f(const struct legacy_img_hdr *hdr) \ in image_get_hdr_l()
861 return hdr->ih_##f; \ in image_get_hdr_l()
904 #define image_set_hdr_l(f) \ argument
905 static inline void image_set_##f(struct legacy_img_hdr *hdr, uint32_t val) \
907 hdr->ih_##f = cpu_to_uimage(val); \
917 #define image_set_hdr_b(f) \ in image_set_hdr_l() argument
918 static inline void image_set_##f(struct legacy_img_hdr *hdr, uint8_t val) \ in image_set_hdr_l()
920 hdr->ih_##f = val; \ in image_set_hdr_l()