Home | History | Annotate | Download | only in elff

Lines Matching refs:high

132    * where that routine is inlined), or a pair "low PC, and high PC" describing

138 AddrType high;
140 while (elf_file()->get_range(range_off, &low, &high) &&
141 (low != 0 || high != 0)) {
142 if (address >= low && address < high) {
212 Elf_Xword low, high;
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
214 (low != 0 || high != 0)) {
216 (unsigned long long)low, (unsigned long long)high);
220 Elf_Word low, high;
221 while (elf_file()->get_range<Elf_Word>(off, &low, &high) &&
222 (low != 0 || high != 0)) {
224 low, high);