Lines Matching defs:gnp
77 Gotndx *gnp;
84 for (ALIST_TRAVERSE(alp, idx, gnp)) {
85 if ((rdesc->rel_raddend == gnp->gn_addend) &&
86 (gnp->gn_gotref == gref)) {
87 return (gnp);
100 Gotndx *gnp;
111 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, rdesc);
112 assert(gnp);
114 gotndx = (Xword)gnp->gn_gotndx;
934 Gotndx *gnp;
944 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, arsp);
945 assert(gnp);
948 gotndx = gnp->gn_gotndx + 1;
950 gotndx = gnp->gn_gotndx;
978 Gotndx *gnp;
984 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, arsp);
985 assert(gnp);
987 ((Xword)gnp->gn_gotndx * M_GOT_ENTSIZE) +
1003 Gotndx *gnp;
1005 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, arsp);
1006 assert(gnp);
1007 value = (Xword)gnp->gn_gotndx * M_GOT_ENTSIZE;
1011 Gotndx *gnp;
1013 gnp = ld_find_got_ndx(sdp->sd_GOTndxs, gref, ofl, arsp);
1014 assert(gnp);
1015 value = (Xword)gnp->gn_gotndx * M_GOT_ENTSIZE;
1308 Gotndx *gnp;
1324 if ((gnp = ld_find_got_ndx(sdp->sd_GOTndxs,
1328 gnp, GOT_REF_TLSIE, FLG_REL_STLS,
1361 if (IS_TLS_LD(rtype) && ((gnp = ld_find_got_ndx(sdp->sd_GOTndxs,
1364 if (ld_assign_got_TLS(local, rsp, ofl, sdp, gnp, GOT_REF_TLSLD,
1369 ((gnp = ld_find_got_ndx(sdp->sd_GOTndxs, GOT_REF_TLSGD,
1372 if (ld_assign_got_TLS(local, rsp, ofl, sdp, gnp, GOT_REF_TLSGD,
1390 Gotndx gn, *gnp;
1411 if ((gnp = libld_malloc(sizeof (Gotndx))) == NULL)
1413 (void) memcpy(gnp, &gn, sizeof (Gotndx));
1414 ofl->ofl_tlsldgotndx = gnp;
1420 for (ALIST_TRAVERSE(*alpp, idx, gnp)) {
1421 if (gnp->gn_addend > raddend)