Lines Matching defs:idxp
5132 skip_listptr_hole (struct listptr_table *table, size_t *idxp,
5141 while (*idxp < table->n && table->table[*idxp].offset < (Dwarf_Off) offset)
5142 ++*idxp;
5144 struct listptr *p = &table->table[*idxp];
5146 if (*idxp == table->n
5178 next_listptr_offset (struct listptr_table *table, size_t *idxp, Dwarf_Off off)
5183 if (*idxp < table->n)
5185 while (++*idxp < table->n)
5187 Dwarf_Off next = table->table[*idxp].offset;
5208 listptr_cu (struct listptr_table *table, size_t *idxp,
5212 while (*idxp < table->n
5213 && table->table[*idxp].offset < start)
5214 ++*idxp;
5216 if (*idxp < table->n
5217 && table->table[*idxp].offset >= start
5218 && table->table[*idxp].offset < end)
5220 struct listptr *p = &table->table[*idxp];
5233 listptr_attr (struct listptr_table *table, size_t idxp,
5239 listptr = get_listptr (table, idxp);
5246 idxp++;