Lines Matching defs:width
814 // than the width of the value to be shifted, in which case
1851 long long width;
1862 width = const_expression_value(expr);
1863 bitfield->bit_size = width;
1865 if (width < 0 || width > INT_MAX || (*ctx->ident && width == 0)) {
1866 sparse_error(token->pos, "bitfield '%s' has invalid width (%lld)",
1867 show_ident(*ctx->ident), width);
1868 width = -1;
1873 if (Wone_bit_signed_bitfield && width == 1 && is_signed) {
1886 bitfield->bit_size = width;