Lines Matching full:member
16 #define offsetof(TYPE, MEMBER) __builtin_offsetof(TYPE, MEMBER) argument
22 * @MEMBER: The field to return the size of
24 #define sizeof_field(TYPE, MEMBER) sizeof((((TYPE *)0)->MEMBER)) argument
30 * @MEMBER: The member within the structure to get the end offset of
32 #define offsetofend(TYPE, MEMBER) \ argument
33 (offsetof(TYPE, MEMBER) + sizeof_field(TYPE, MEMBER))
39 * @MEMBERS: The member declarations for the mirrored structs
55 * @MEMBERS: The member declarations for the mirrored structs
71 * @MEMBERS: The member declarations for the mirrored structs
87 * @NAME: The name of the flexible array member
89 * In order to have a flexible array member in a union or alone in a
91 * named member, but that member can be empty.