Searched refs:ioff (Results 1 - 4 of 4) sorted by relevance

/external/valgrind/main/coregrind/m_debuginfo/
H A Dpriv_image.h141 struct { DiImage* img; DiOffT ioff; } member in struct:__anon32414
147 static inline DiCursor mk_DiCursor ( DiImage* img, DiOffT ioff ) {
148 return (DiCursor){img, ioff};
164 struct { DiImage* img; DiOffT ioff; DiOffT szB; } member in struct:__anon32415
171 static inline DiSlice mk_DiSlice ( DiImage* img, DiOffT ioff, DiOffT szB ) { argument
172 return (DiSlice){img, ioff, szB};
185 vg_assert(cur.ioff + size <= ML_(img_size)(cur.img));
186 return mk_DiSlice(cur.img, cur.ioff, size);
212 c.ioff = sl.ioff;
[all...]
H A Dreadelf.c540 if (!ML_(img_valid)(escn_opd->img, escn_opd->ioff + offset_in_opd,
556 escn_opd->ioff + offset_in_opd, sizeof(fn_descr));
716 escn_symtab->ioff + i * sizeof(ElfXX_Sym), sizeof(sym));
717 DiOffT sym_name = escn_strtab->ioff + sym.st_name;
847 escn_symtab->ioff + i * sizeof(ElfXX_Sym), sizeof(sym));
848 DiOffT sym_name = escn_strtab->ioff + sym.st_name;
1391 _{m,d,a}ioff an offset in the image (DiOffT)
1536 TRACE_SYMTAB("phdr: ioff %llu nent %ld ent_szB %ld\n",
1538 TRACE_SYMTAB("shdr: ioff %llu nent %ld ent_szB %ld\n",
2271 _sec_escn.ioff
[all...]
H A Dreadmacho.c223 sli.ioff = arch.offset;
250 if (sli.ioff >= 0 && sli.ioff + sli.szB <= ML_(img_size)(sli.img)) {
276 vg_assert(sli.ioff >= 0);
278 vg_assert(sli.ioff + sli.szB <= ML_(img_size)(sli.img));
616 res.ioff = sect.offset;
639 DiOffT min_off = sli.ioff;
640 DiOffT max1_off = sli.ioff + sli.szB;
H A Dreaddwarf3.c172 DiOffT sli_next; // offset in underlying DiImage; must be >= sli.ioff
183 if (c->sli.ioff == DiOffT_INVALID) return False;
184 if (c->sli_next < c->sli.ioff) return False;
200 c->sli_next = c->sli.ioff + sli_initial_offset;
208 return c->sli_next >= c->sli.ioff + c->sli.szB;
213 return c->sli_next - c->sli.ioff;
216 c->sli_next = c->sli.ioff + pos;
222 return c->sli.ioff + c->sli.szB - c->sli_next;
239 if (c->sli_next + sizeof(UChar) > c->sli.ioff + c->sli.szB) {
251 if (c->sli_next + sizeof(UShort) > c->sli.ioff
[all...]

Completed in 89 milliseconds