Lines Matching refs:padding
102 * Checks that a internal struct padding is big enough.
108 if (sizeof(p->member.s) > sizeof(p->member.padding)) \
110 printf("error! padding of %s::%s is too small, padding=%d struct=%d correct=%d\n", #strct, #member, \
111 (int)sizeof(p->member.padding), (int)sizeof(p->member.s), (int)RT_ALIGN_Z(sizeof(p->member.s), (align))); \
114 else if (RT_ALIGN_Z(sizeof(p->member.padding), (align)) != sizeof(p->member.padding)) \
116 printf("error! padding of %s::%s is misaligned, padding=%d correct=%d\n", #strct, #member, \
117 (int)sizeof(p->member.padding), (int)RT_ALIGN_Z(sizeof(p->member.s), (align))); \
123 * Checks that a internal struct padding is big enough.
129 if (sizeof(p->s) > sizeof(p->padding)) \
131 printf("error! padding of %s is too small, padding=%d struct=%d correct=%d\n", #strct, \
132 (int)sizeof(p->padding), (int)sizeof(p->s), (int)RT_ALIGN_Z(sizeof(p->s), 64)); \
138 * Checks that a internal struct padding is big enough.
146 printf("error! padding of %s::%s is too small, padding=%d struct=%d\n", #strct, #member, \