Home | History | Annotate | Download | only in binutils

Lines Matching defs:ivd

13665 			  Elf_Internal_Verdef ivd;
13679 ivd.vd_next = 0;
13681 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
13686 ivd.vd_next = BYTE_GET (evd.vd_next);
13687 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
13690 offset += ivd.vd_next;
13692 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
13693 && ivd.vd_next != 0);
13695 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
13700 ivd.vd_aux = BYTE_GET (evd.vd_aux);
13703 offset - ivd.vd_next + ivd.vd_aux,
14101 Elf_Internal_Verdef ivd;
14117 ivd.vd_ndx = 0;
14118 ivd.vd_aux = 0;
14119 ivd.vd_next = 0;
14120 ivd.vd_flags = 0;
14124 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
14125 ivd.vd_aux = BYTE_GET (evd.vd_aux);
14126 ivd.vd_next = BYTE_GET (evd.vd_next);
14127 ivd.vd_flags = BYTE_GET (evd.vd_flags);
14130 if ((ivd.vd_ndx & VERSYM_VERSION) > max_vd_ndx)
14131 max_vd_ndx = ivd.vd_ndx & VERSYM_VERSION;
14133 off += ivd.vd_next;
14135 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION) && ivd.vd_next != 0);
14137 if (ivd.vd_ndx == (vers_data & VERSYM_VERSION))
14139 if (ivd.vd_ndx == 1 && ivd.vd_flags == VER_FLG_BASE)
14142 off -= ivd.vd_next;
14143 off += ivd.vd_aux;