Lines Matching defs:gnp

57 	Gotndx	*gnp;
64 for (ALIST_TRAVERSE(alp, idx, gnp)) {
65 if ((rdesc->rel_raddend == gnp->gn_addend) &&
66 (gref == gnp->gn_gotref))
67 return (gnp);
79 Gotndx *gnp;
90 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, rdesc);
91 assert(gnp);
93 gotndx = (Xword)gnp->gn_gotndx;
1223 Gotndx *gnp;
1243 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, arsp);
1244 assert(gnp);
1247 gotndx = gnp->gn_gotndx + 1;
1249 gotndx = gnp->gn_gotndx;
1284 Gotndx *gnp;
1294 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, arsp);
1295 assert(gnp);
1297 value = gnp->gn_gotndx * M_GOT_ENTSIZE;
1301 Gotndx *gnp;
1303 gnp = ld_find_got_ndx(sdp->sd_GOTndxs,
1305 assert(gnp);
1307 value = gnp->gn_gotndx * M_GOT_ENTSIZE;
1712 Gotndx *gnp;
1741 ((gnp = ld_find_got_ndx(sdp->sd_GOTndxs,
1745 gnp, GOT_REF_TLSIE, FLG_REL_STLS,
1794 ((gnp = ld_find_got_ndx(sdp->sd_GOTndxs, GOT_REF_TLSLD,
1797 if (ld_assign_got_TLS(local, rsp, ofl, sdp, gnp, GOT_REF_TLSLD,
1803 ((gnp = ld_find_got_ndx(sdp->sd_GOTndxs, GOT_REF_TLSGD,
1806 if (ld_assign_got_TLS(local, rsp, ofl, sdp, gnp, GOT_REF_TLSGD,
1857 Gotndx *gnp;
1859 for (ALIST_TRAVERSE(sdp->sd_GOTndxs, idx, gnp)) {
1861 Gotref gref = gnp->gn_gotref;
1868 switch (gnp->gn_gotndx) {
1870 gnp->gn_gotndx = small_index;
1876 gnp->gn_gotndx = mixed_index;
1880 gnp->gn_gotndx = large_index;
1885 EC_XWORD(gnp->gn_gotndx), demangle(sdp->sd_name));
1897 Gotndx gn, *gnp;
1965 if ((gnp = libld_malloc(sizeof (Gotndx))) == NULL)
1967 (void) memcpy(gnp, &gn, sizeof (Gotndx));
1968 ofl->ofl_tlsldgotndx = gnp;
1974 for (ALIST_TRAVERSE(*alpp, idx, gnp)) {
1975 if (gnp->gn_addend > raddend)