Home | History | Annotate | Download | only in Sema

Lines Matching defs:Padding

92       unsigned Padding = NumBytesAtAlign4 % 8;
93 if (Padding == 0) {
95 // Everything is set: there's no padding and we don't need to add
99 // No existing padding; add in 4 bytes padding
104 assert(Padding == 4);
106 // Everything is set: there's 4 bytes padding and we don't need
110 // There are 4 bytes padding, but we don't need any; remove it.
119 // We have not seen any 8-byte aligned element yet. We insert a padding
126 unsigned Padding = NumBytesAtAlign4 % 8;
127 if (Padding == 0) {
129 // Everything is set: there's no padding and we don't need to add
133 // No existing padding; add in 4 bytes padding
138 assert(Padding == 4);
140 // Everything is set: there's 4 bytes padding and we don't need
144 // There are 4 bytes padding, but we don't need any; remove it.
151 // Forget about any padding.