Home
last modified time | relevance | path

Searched refs:type_index (Results 1 – 6 of 6) sorted by relevance

/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dtypeindex45 * @brief Class type_index
52 struct type_index
54 type_index(const type_info& __rhs) noexcept
58 operator==(const type_index& __rhs) const noexcept
62 operator!=(const type_index& __rhs) const noexcept
66 operator<(const type_index& __rhs) const noexcept
70 operator<=(const type_index& __rhs) const noexcept
74 operator>(const type_index& __rhs) const noexcept
95 /// std::hash specialization for type_index.
97 struct hash<type_index>
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Dtypeindex49 struct type_index
51 type_index(const type_info& __rhs) noexcept
55 operator==(const type_index& __rhs) const noexcept
59 operator!=(const type_index& __rhs) const noexcept
63 operator<(const type_index& __rhs) const noexcept
67 operator<=(const type_index& __rhs) const noexcept
71 operator>(const type_index& __rhs) const noexcept
75 operator>=(const type_index& __rhs) const noexcept
92 /// std::hash specialization for type_index.
94 struct hash<type_index>
[all …]
/dragonfly/contrib/binutils-2.34/binutils/
H A Dwrstabs.c151 long type_index; member
493 info.type_index = 1; in write_stabs_in_sections_debugging_info()
593 ++info->type_index; in stab_empty_type()
616 ++info->type_index; in stab_void_type()
653 ++info->type_index; in stab_int_type()
712 ++info->type_index; in stab_float_type()
737 ++info->type_index; in stab_complex_type()
815 ++info->type_index; in stab_enum_type()
906 ++info->type_index; in stab_modify_type()
1044 ++info->type_index; in stab_array_type()
[all …]
/dragonfly/contrib/binutils-2.27/binutils/
H A Dwrstabs.c151 long type_index; member
493 info.type_index = 1; in write_stabs_in_sections_debugging_info()
593 ++info->type_index; in stab_empty_type()
616 ++info->type_index; in stab_void_type()
653 ++info->type_index; in stab_int_type()
712 ++info->type_index; in stab_float_type()
737 ++info->type_index; in stab_complex_type()
815 ++info->type_index; in stab_enum_type()
906 ++info->type_index; in stab_modify_type()
1044 ++info->type_index; in stab_array_type()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dvarobj.c3208 if (field_is_static (&TYPE_FIELD (type, type_index))) in value_struct_element_index()
3209 result = value_static_field (type, type_index); in value_struct_element_index()
3732 int type_index = TYPE_N_BASECLASSES (type); in cplus_describe_child() local
3746 if ((type == basetype && type_index == vptr_fieldno) in cplus_describe_child()
3747 || TYPE_FIELD_ARTIFICIAL (type, type_index)) in cplus_describe_child()
3751 ++type_index; in cplus_describe_child()
3753 --type_index; in cplus_describe_child()
3757 field_name = TYPE_FIELD_NAME (type, type_index); in cplus_describe_child()
3762 if (TYPE_CODE (TYPE_FIELD_TYPE (type, type_index)) in cplus_describe_child()
3776 *cname = xstrdup (TYPE_FIELD_NAME (type, type_index)); in cplus_describe_child()
[all …]
/dragonfly/sbin/ip6fw/
H A Dip6fw.c418 int type_index; in show_ip6fw() local
423 for (type_index = 0; type_index < IPV6_FW_ICMPTYPES_DIM * sizeof(unsigned) * 8; ++type_index) in show_ip6fw()
424 if (chain->fw_icmp6types[type_index / (sizeof(unsigned) * 8)] & in show_ip6fw()
425 (1U << (type_index % (sizeof(unsigned) * 8)))) { in show_ip6fw()
426 printf("%c%d", first == 1 ? ' ' : ',', type_index); in show_ip6fw()