Home | History | Annotate | Download | only in binutils

Lines Matching refs:n2

1657   bfd_signed_vma n2, n3;
1687 n2 = parse_number (pp, &ov2);
1717 && n2 == 0
1729 if (self_subrange && n2 == 0 && n3 == 0)
1732 /* A type defined as a subrange of itself, with n2 positive and
1733 n3 zero, is a complex type, and n2 is the number of bytes. */
1734 if (self_subrange && n3 == 0 && n2 > 0)
1735 return debug_make_complex_type (dhandle, n2);
1737 /* If n3 is zero and n2 is positive, this is a floating point
1738 type, and n2 is the number of bytes. */
1739 if (n3 == 0 && n2 > 0)
1740 return debug_make_float_type (dhandle, n2);
1743 if (n2 == 0 && n3 == -1)
1761 if (self_subrange && n2 == 0 && n3 == 127)
1766 if (n2 == 0)
1782 && n2 < 0
1783 && (self_subrange || n2 == -8))
1784 return debug_make_int_type (dhandle, - n2, TRUE);
1785 else if (n2 == - n3 - 1 || n2 == n3 + 1)
1818 return debug_make_range_type (dhandle, index_type, n2, n3);