Home
last modified time | relevance | path

Searched refs:lowp (Results 1 – 2 of 2) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
HDm2-typeprint.c373 m2_get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp) in m2_get_discrete_bounds() argument
383 *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1)); in m2_get_discrete_bounds()
384 *highp = -*lowp - 1; in m2_get_discrete_bounds()
390 return get_discrete_bounds (type, lowp, highp); in m2_get_discrete_bounds()
HDgdbtypes.c821 get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp) in get_discrete_bounds() argument
827 *lowp = TYPE_LOW_BOUND (type); in get_discrete_bounds()
837 *lowp = *highp = TYPE_FIELD_ENUMVAL (type, 0); in get_discrete_bounds()
840 if (TYPE_FIELD_ENUMVAL (type, i) < *lowp) in get_discrete_bounds()
841 *lowp = TYPE_FIELD_ENUMVAL (type, i); in get_discrete_bounds()
847 if (*lowp >= 0) in get_discrete_bounds()
854 *lowp = 0; in get_discrete_bounds()
859 *lowp = 0; in get_discrete_bounds()
867 *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1)); in get_discrete_bounds()
868 *highp = -*lowp - 1; in get_discrete_bounds()
[all …]