Home
last modified time | relevance | path

Searched refs:minoff (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dpointer-query.cc1064 HOST_WIDE_INT minoff; in inform_access() local
1067 minoff = aref.offrng[0].to_shwi (); in inform_access()
1069 minoff = aref.offrng[0] < 0 ? diff_min : diff_max; in inform_access()
1077 maxoff = minoff; in inform_access()
1098 if (minoff == 0 in inform_access()
1101 else if (minoff == maxoff) in inform_access()
1102 sprintf (offstr, "%lli", (long long) minoff); in inform_access()
1104 sprintf (offstr, "[%lli, %lli]", (long long) minoff, (long long) maxoff); in inform_access()
Dgimple-ssa-warn-restrict.cc408 const offset_int minoff = -maxoff - 1; in extend_offset_range() local
410 offrange[0] += minoff; in extend_offset_range()
/netbsd/src/external/gpl3/binutils/dist/gold/
Dlayout.h112 allocate(off_t len, uint64_t align, off_t minoff);
612 allocate(off_t len, uint64_t align, off_t minoff) in allocate() argument
613 { return this->free_list_.allocate(len, align, minoff); } in allocate()
Dlayout.cc162 Free_list::allocate(off_t len, uint64_t align, off_t minoff) in allocate() argument
167 static_cast<long>(minoff)); in allocate()
169 return align_address(minoff, align); in allocate()
181 off_t start = p->start_ > minoff ? p->start_ : minoff; in allocate()