Lines Matching refs:high
93 ElfW(Addr) low, high; in __elf_preferred_address()
106 high = 0x70000000; in __elf_preferred_address()
118 if ((mapend >= high || l->l_type == lt_executable) in __elf_preferred_address()
119 && high >= mapstart) in __elf_preferred_address()
120 high = mapstart; in __elf_preferred_address()
123 else if (high >= mapend && mapstart >= low) in __elf_preferred_address()
125 if (high - mapend >= mapstart - low) in __elf_preferred_address()
128 high = mapstart; in __elf_preferred_address()
132 high -= 0x10000; /* Allow some room between objects. */ in __elf_preferred_address()
134 if (high <= low || high - low < maplength ) in __elf_preferred_address()
136 return high - maplength; /* Both high and maplength are page-aligned. */ in __elf_preferred_address()