Lines Matching defs:segA
816 NSegment const* segA = NULL;
822 segA = VG_(am_find_nsegment)(addr);
823 if (segA && segA->hasX && segA->hasW)
840 if (!segA) {
841 segA = VG_(am_find_nsegment)(addr);
844 if (segA && segSP && segA == segSP)
851 if (!segA) {
852 segA = VG_(am_find_nsegment)(addr);
854 if (segA && segA->kind == SkFileC && segA->start <= addr
855 && (len == 0 || addr + len <= segA->end + 1)) {
870 if (pxStatusMightChange && segA) {
872 segs[i] = segA;
887 NSegment const* segA = segs[i];
888 if (!segA) {
889 /* If we don't have a cached value for |segA|, compute it now. */
890 segA = VG_(am_find_nsegment)(addr);
892 vg_assert(segA); /* Can this ever fail? */
893 if (segA && segA->kind == SkFileC && segA->start <= addr
894 && (len == 0 || addr + len <= segA->end + 1)) {