Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:aMin

448       (Addr aMin;  Addr aMax;  UShort nbytes;  ..bytes..;  UChar isEnd)
451 valid when aMin <= pc <= aMax (possibly after suitable biasing).
458 biasMe is 1 if the aMin
464 location list. Zero length ranges, with aMax == aMin-1, are not
488 /* t-bias aMin */
513 + sizeof(UWord) /*aMin*/ + sizeof(UWord) /*aMax*/
525 p = ML_(write_Addr)(p, 0); /*aMin*/
654 /* Denotes an address range. Both aMin and aMax are included in the
658 struct { Addr aMin; Addr aMax; }
675 if (rng1->aMin < rng2->aMin) return -1;
676 if (rng1->aMin > rng2->aMin) return 1;
697 static XArray* unitary_range_list ( Addr aMin, Addr aMax )
701 vg_assert(aMin <= aMax);
706 pair.aMin = aMin;
765 pair.aMin = w1 + base + svma_of_referencing_CU;
767 vg_assert(pair.aMin <= pair.aMax);
1283 VG_(printf)("[%#lx,%#lx] ", range->aMin, range->aMax);
1803 tv->rngOneMin = range->aMin;
3857 oneRange.aMin = varp->rngOneMin;
3873 Addr pcMin = varPcRanges[i].aMin;