Home
last modified time | relevance | path

Searched refs:fieldoffset (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dctfe.h44 int getFieldIndex(Type *fieldtype, unsigned fieldoffset);
H A Dctfeexpr.c42 int ClassReferenceExp::getFieldIndex(Type *fieldtype, unsigned fieldoffset) in getFieldIndex() argument
54 if (fieldoffset == v2->offset && in getFieldIndex()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-structalias.c1019 HOST_WIDE_INT fieldoffset = vi->offset + inc; in set_union_with_increment() local
1024 if (fieldoffset < 0) in set_union_with_increment()
1027 vi = first_or_preceding_vi_for_offset (vi, fieldoffset); in set_union_with_increment()
1040 while (vi->offset < fieldoffset + size); in set_union_with_increment()
1652 HOST_WIDE_INT fieldoffset = v->offset + roffset; in do_sd_constraint() local
1660 if (fieldoffset < 0) in do_sd_constraint()
1663 v = first_or_preceding_vi_for_offset (v, fieldoffset); in do_sd_constraint()
1690 while (v->offset < fieldoffset + size); in do_sd_constraint()
1752 HOST_WIDE_INT fieldoffset = v->offset + loff; in do_ds_constraint() local
1759 if (fieldoffset < 0) in do_ds_constraint()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-structalias.cc1033 HOST_WIDE_INT fieldoffset = vi->offset + inc; in set_union_with_increment() local
1038 if (fieldoffset < 0) in set_union_with_increment()
1041 vi = first_or_preceding_vi_for_offset (vi, fieldoffset); in set_union_with_increment()
1054 while (vi->offset < fieldoffset + size); in set_union_with_increment()
1624 HOST_WIDE_INT fieldoffset = v->offset + roffset; in do_sd_constraint() local
1632 if (fieldoffset < 0) in do_sd_constraint()
1635 v = first_or_preceding_vi_for_offset (v, fieldoffset); in do_sd_constraint()
1662 while (v->offset < fieldoffset + size); in do_sd_constraint()
1724 HOST_WIDE_INT fieldoffset = v->offset + loff; in do_ds_constraint() local
1731 if (fieldoffset < 0) in do_ds_constraint()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dctfeexpr.d61 private int getFieldIndex(Type fieldtype, uint fieldoffset) in getFieldIndex() argument
73 if (fieldoffset == v2.offset && fieldtype.size() == v2.type.size()) in getFieldIndex()