Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:aMax

527       (Addr aMin;  Addr aMax;  UShort nbytes;  ..bytes..;  UChar isEnd)
530 valid when aMin <= pc <= aMax (possibly after suitable biasing).
537 biasMe is 1 if the aMin/aMax fields need this DebugInfo's
542 that aMax is 1 less than the corresponding value in a DWARF3
543 location list. Zero length ranges, with aMax == aMin-1, are not
571 /* t-bias aMax */
592 + sizeof(UWord) /*aMin*/ + sizeof(UWord) /*aMax*/
605 p = ML_(write_Addr)(p, ~0); /*aMax*/
733 /* Denotes an address range. Both aMin and aMax are included in the
737 struct { Addr aMin; Addr aMax; }
756 if (rng1->aMax < rng2->aMax) return -1;
757 if (rng1->aMax > rng2->aMax) return 1;
776 static XArray* unitary_range_list ( Addr aMin, Addr aMax )
780 vg_assert(aMin <= aMax);
786 pair.aMax = aMax;
845 pair.aMax = w2 - 1 + base + svma_of_referencing_CU;
846 vg_assert(pair.aMin <= pair.aMax);
1461 VG_(printf)("[%#lx,%#lx] ", range->aMin, range->aMax);
1996 tv->rngOneMax = range->aMax;
4245 oneRange.aMax = varp->rngOneMax;
4261 Addr pcMax = varPcRanges[i].aMax;