Home
last modified time | relevance | path

Searched refs:readp (Results 1 – 7 of 7) sorted by relevance

/external/elfutils/libdw/
Ddwarf_getaranges.c54 const char *readp local
56 const char *readendp = readp + dbg->sectiondata[IDX_debug_aranges]->d_size;
58 while (readp < readendp)
60 const char *hdrstart = readp;
79 Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
83 length = read_8ubyte_unaligned_inc (dbg, readp);
87 unsigned int version = read_2ubyte_unaligned_inc (dbg, readp);
97 offset = read_4ubyte_unaligned_inc (dbg, readp);
99 offset = read_8ubyte_unaligned_inc (dbg, readp);
101 unsigned int address_size = *readp++;
[all …]
Ddwarf_getmacros.c42 const unsigned char *readp local
45 = readp + die->cu->dbg->sectiondata[IDX_debug_macinfo]->d_size;
47 if (readp == readendp)
50 if (*readp != DW_MACINFO_start_file)
53 while (readp < readendp)
55 unsigned int opcode = *readp++;
71 get_uleb128 (u128, readp);
73 endp = memchr (readp, '\0', readendp - readp);
77 str = (char *) readp;
78 readp = endp + 1;
[all …]
Ddwarf_getpubnames.c35 unsigned char *readp = startp; in get_offsets() local
36 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size; in get_offsets()
38 while (readp + 14 < endp) in get_offsets()
59 Dwarf_Off len = read_4ubyte_unaligned_inc (dbg, readp); in get_offsets()
62 len = read_8ubyte_unaligned_inc (dbg, readp); in get_offsets()
67 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp; in get_offsets()
75 uint16_t version = read_2ubyte_unaligned (dbg, readp); in get_offsets()
84 mem[cnt].cu_offset = read_4ubyte_unaligned (dbg, readp + 2); in get_offsets()
86 mem[cnt].cu_offset = read_8ubyte_unaligned (dbg, readp + 2); in get_offsets()
104 readp += len; in get_offsets()
[all …]
Ddwarf_child.c32 unsigned char *readp = (unsigned char *) die->addr; in __libdw_find_attr() local
37 get_uleb128 (abbrev_code, readp); in __libdw_find_attr()
88 return readp; in __libdw_find_attr()
94 size_t len = __libdw_form_val_len (dbg, die->cu, attr_form, readp); in __libdw_find_attr()
98 readp = NULL; in __libdw_find_attr()
103 readp += len; in __libdw_find_attr()
113 return readp; in __libdw_find_attr()
Ddwarf_haschildren.c31 unsigned char *readp = (unsigned char *) die->addr; local
36 get_uleb128 (abbrev_code, readp);
/external/elfutils/src/
Dreadelf.c4218 const unsigned char *readp = (const unsigned char *) data->d_buf; in print_debug_macinfo_section() local
4219 const unsigned char *readendp = readp + data->d_size; in print_debug_macinfo_section()
4222 while (readp < readendp) in print_debug_macinfo_section()
4224 unsigned int opcode = *readp++; in print_debug_macinfo_section()
4239 get_uleb128 (u128, readp); in print_debug_macinfo_section()
4241 endp = memchr (readp, '\0', readendp - readp); in print_debug_macinfo_section()
4252 level, "", (char *) readp, u128); in print_debug_macinfo_section()
4255 level, "", (char *) readp, u128); in print_debug_macinfo_section()
4257 printf (" #vendor-ext %s, number %u\n", (char *) readp, u128); in print_debug_macinfo_section()
4259 readp = endp + 1; in print_debug_macinfo_section()
[all …]
/external/tremolo/Tremolo/
Dvorbisfile.c554 int readp, in _fetch_and_process_packet() argument
632 if(!readp){ in _fetch_and_process_packet()