Lines Matching defs:last_field_end
3720 FieldInfo const &last_field_info, uint64_t last_field_end,
3723 // If we have a gap between the last_field_end and the current
3725 if (this_field_info.bit_offset <= last_field_end)
3757 uint64_t last_field_end = previous_field.GetEffectiveFieldEnd();
3762 // last_field_end so the bit-field does not step into the last
3764 if (last_field_end != 0 && ((last_field_end % word_width) != 0))
3765 last_field_end += word_width - (last_field_end % word_width);
3769 if (!ShouldCreateUnnamedBitfield(previous_field, last_field_end,
3775 const uint64_t unnamed_bit_size = current_field.bit_offset - last_field_end;
3776 const uint64_t unnamed_bit_offset = last_field_end;