Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:aMax

448       (Addr aMin;  Addr aMax;  UShort nbytes;  ..bytes..;  UChar isEnd)
451 valid when aMin <= pc <= aMax (possibly after suitable biasing).
458 aMax fields need this DebugInfo's
463 that aMax is 1 less than the corresponding value in a DWARF3
464 location list. Zero length ranges, with aMax == aMin-1, are not
492 /* t-bias aMax */
513 + sizeof(UWord) /*aMin*/ + sizeof(UWord) /*aMax*/
526 p = ML_(write_Addr)(p, ~0); /*aMax*/
654 /* Denotes an address range. Both aMin and aMax are included in the
658 struct { Addr aMin; Addr aMax; }
677 if (rng1->aMax < rng2->aMax) return -1;
678 if (rng1->aMax > rng2->aMax) return 1;
697 static XArray* unitary_range_list ( Addr aMin, Addr aMax )
701 vg_assert(aMin <= aMax);
707 pair.aMax = aMax;
766 pair.aMax = w2 - 1 + base + svma_of_referencing_CU;
767 vg_assert(pair.aMin <= pair.aMax);
1283 VG_(printf)("[%#lx,%#lx] ", range->aMin, range->aMax);
1804 tv->rngOneMax = range->aMax;
3858 oneRange.aMax = varp->rngOneMax;
3874 Addr pcMax = varPcRanges[i].aMax;