Searched refs:readp (Results 1 - 15 of 15) sorted by relevance

/external/elfutils/src/libdw/
H A Ddwarf_getaranges.c88 const unsigned char *readp = dbg->sectiondata[IDX_debug_aranges]->d_buf; local
90 = readp + dbg->sectiondata[IDX_debug_aranges]->d_size;
92 while (readp < readendp)
94 const unsigned char *hdrstart = readp;
113 Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
117 length = read_8ubyte_unaligned_inc (dbg, readp);
124 unsigned int version = read_2ubyte_unaligned_inc (dbg, readp);
141 IDX_debug_aranges, &readp,
145 unsigned int address_size = *readp++;
150 unsigned int segment_size = *readp
[all...]
H A Ddwarf_child.c47 const unsigned char *readp; local
50 Dwarf_Abbrev *abbrevp = __libdw_dieabbrev (die, &readp);
89 return (unsigned char *) readp;
95 size_t len = __libdw_form_val_len (die->cu, attr_form, readp);
98 readp = NULL;
103 readp += len;
113 return (unsigned char *) readp;
H A Ddwarf_getpubnames.c51 unsigned char *readp = startp; local
52 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
54 while (readp + 14 < endp)
75 Dwarf_Off len = read_4ubyte_unaligned_inc (dbg, readp);
78 len = read_8ubyte_unaligned_inc (dbg, readp);
89 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp;
99 uint16_t version = read_2ubyte_unaligned (dbg, readp);
108 readp + 2, len_bytes,
125 readp += len;
191 unsigned char *readp local
[all...]
H A Ddwarf_ranges.c112 unsigned char *readp; local
124 if ((readp = __libdw_formptr (attr, IDX_debug_ranges,
160 readp = d->d_buf + offset;
165 if (readendp - readp < die->cu->address_size * 2)
172 &readp, die->cu->address_size,
188 return readp - (unsigned char *) d->d_buf;
H A Ddwarf_getmacros.c145 const unsigned char *readp,
149 const unsigned char *startp = readp;
152 if (readp + 3 > endp)
159 uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
166 uint8_t flags = *readp++;
172 line_offset = read_addr_unaligned_inc (is_64bit ? 8 : 4, dbg, readp);
173 if (readp > endp)
212 unsigned count = *readp++;
215 unsigned opcode = *readp++;
218 if (readp >
144 get_table_for_offset(Dwarf *dbg, Dwarf_Word macoff, const unsigned char *readp, const unsigned char *const endp, Dwarf_Die *cudie) argument
327 const unsigned char *readp = startp + offset; local
[all...]
H A Ddwarf_formudata.c80 unsigned char *readp = d->d_buf + offset; local
82 if (unlikely (readp >= endp))
93 return readp;
H A Ddwarf_getlocation.c658 unsigned char *readp = locs->d_buf + offset; local
662 if (readendp - readp < attr->cu->address_size * 2)
673 &readp, attr->cu->address_size,
686 if (readendp - readp < 2)
691 block.length = read_2ubyte_unaligned_inc (attr->cu->dbg, readp);
692 block.data = readp;
693 if (readendp - readp < (ptrdiff_t) block.length)
695 readp += block.length;
707 return readp - (unsigned char *) locs->d_buf;
H A DlibdwP.h470 __libdw_dieabbrev (Dwarf_Die *die, const unsigned char **readp) argument
473 if (die->abbrev == NULL || readp != NULL)
479 if (readp != NULL)
480 *readp = addr;
/external/elfutils/src/src/
H A Dreadelf.c4478 unsigned char **readp, unsigned char *endp)
4489 || p->offset >= (Dwarf_Off) (endp - *readp + offset))
4491 *readp = endp;
4499 *readp += p->offset - offset;
4683 const unsigned char *readp = data->d_buf; local
4684 const unsigned char *readendp = readp + data->d_size;
4686 while (readp < readendp)
4688 const unsigned char *hdrstart = readp;
4692 if (readp + 4 > readendp)
4700 Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
4475 skip_listptr_hole(struct listptr_table *table, size_t *idxp, uint_fast8_t *address_sizep, uint_fast8_t *offset_sizep, Dwarf_Addr *base, struct Dwarf_CU **cu, ptrdiff_t offset, unsigned char **readp, unsigned char *endp) argument
4845 unsigned char *readp = data->d_buf; local
4942 print_cfa_program(const unsigned char *readp, const unsigned char *const endp, Dwarf_Word vma_base, unsigned int code_align, int data_align, unsigned int version, unsigned int ptr_size, Dwfl_Module *dwflmod, Ebl *ebl, Dwarf *dbg) argument
5319 read_encoded(unsigned int encoding, const unsigned char *readp, const unsigned char *const endp, uint64_t *res, Dwarf *dbg) argument
5424 const unsigned char *readp = data->d_buf; local
6908 unsigned char *readp = data->d_buf; local
7078 const unsigned char *readp = (const unsigned char *) data->d_buf; local
7222 const unsigned char *readp = (const unsigned char *) data->d_buf; local
7676 const unsigned char *readp = data->d_buf; local
7778 const unsigned char *readp = data->d_buf; local
7948 const unsigned char *readp = data->d_buf; local
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dcaches-queues-lists.c55 queue->readp = queue->writep = 0;
71 while((nextp = (queue->writep + 1) % queue->size) == queue->readp)
88 while(queue->readp == queue->writep)
91 data = queue->data[queue->readp];
92 queue->readp = (queue->readp + 1) % queue->size;
107 empty = queue->readp == queue->writep;
120 queue->readp = queue->writep;
132 queue->readp <= queue->writep ? queue->writep - queue->readp
[all...]
H A Dcaches-queues-lists.h133 int readp; member in struct:queue
H A Dunsquashfs.h155 int readp; member in struct:queue
H A Dunsquashfs.c185 queue->readp = queue->writep = 0;
200 while((nextp = (queue->writep + 1) % queue->size) == queue->readp)
215 while(queue->readp == queue->writep)
218 data = queue->data[queue->readp];
219 queue->readp = (queue->readp + 1) % queue->size;
232 queue->readp <= queue->writep ? queue->writep - queue->readp :
233 queue->size - queue->readp + queue->writep,
234 queue->readp
[all...]
/external/tremolo/Tremolo/
H A Dvorbisfile.c165 backward search linkage. no 'readp' as it will certainly have to
546 readp).
549 0) need more data (only if readp==0)
554 int readp,
632 if(!readp){
553 _fetch_and_process_packet(OggVorbis_File *vf, int readp, int spanp) argument
/external/libvorbis/lib/
H A Dvorbisfile.c143 backward search linkage. no 'readp' as it will certainly have to
665 readp).
668 0) need more data (only if readp==0)
674 int readp,
771 if(!readp)return(0);
672 _fetch_and_process_packet(OggVorbis_File *vf, ogg_packet *op_in, int readp, int spanp) argument

Completed in 318 milliseconds