Lines Matching defs:offset
39 * Convert an ELF section#,offset pair to a string pointer.
43 elf_strptr(Elf *e, size_t scndx, size_t offset)
60 offset >= shdr.sh_size) {
71 * an offset to a `char *' address using the `d_off'
84 if (offset >= d->d_off &&
85 offset < d->d_off + d->d_size)
86 return ((char *) d->d_buf + offset - d->d_off);
96 while ((d = elf_getdata(s, d)) != NULL && count <= offset) {
114 if (offset < count) {
115 /* offset starts in the 'hole' */
120 if (offset < count + d->d_size) {
123 offset - count);