Lines Matching defs:RE

141 getPlainRelocationAddress(const MachO::any_relocation_info &RE) {
142 return RE.r_word0;
146 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) {
147 return RE.r_word0 & 0xffffff;
151 const MachO::any_relocation_info &RE) {
153 return (RE.r_word1 >> 24) & 1;
154 return (RE.r_word1 >> 7) & 1;
158 getScatteredRelocationPCRel(const MachO::any_relocation_info &RE) {
159 return (RE.r_word0 >> 30) & 1;
163 const MachO::any_relocation_info &RE) {
165 return (RE.r_word1 >> 25) & 3;
166 return (RE.r_word1 >> 5) & 3;
170 getScatteredRelocationLength(const MachO::any_relocation_info &RE) {
171 return (RE.r_word0 >> 28) & 3;
175 const MachO::any_relocation_info &RE) {
177 return RE.r_word1 >> 28;
178 return RE.r_word1 & 0xf;
2240 MachO::any_relocation_info RE = getRelocation(Rel);
2241 return getAnyRelocationAddress(RE);
2246 MachO::any_relocation_info RE = getRelocation(Rel);
2247 if (isRelocationScattered(RE))
2250 uint32_t SymbolIdx = getPlainRelocationSymbolNum(RE);
2251 bool isExtern = getPlainRelocationExternal(RE);
2271 MachO::any_relocation_info RE = getRelocation(Rel);
2272 return getAnyRelocationType(RE);
2386 MachO::any_relocation_info RE = getRelocation(Rel);
2387 return getAnyRelocationLength(RE);
4541 MachOObjectFile::isRelocationScattered(const MachO::any_relocation_info &RE)
4545 return getPlainRelocationAddress(RE) & MachO::R_SCATTERED;
4549 const MachO::any_relocation_info &RE) const {
4551 return RE.r_word1 & 0xffffff;
4552 return RE.r_word1 >> 8;
4556 const MachO::any_relocation_info &RE) const {
4558 return (RE.r_word1 >> 27) & 1;
4559 return (RE.r_word1 >> 4) & 1;
4563 const MachO::any_relocation_info &RE) const {
4564 return RE.r_word0 >> 31;
4568 const MachO::any_relocation_info &RE) const {
4569 return RE.r_word1;
4573 const MachO::any_relocation_info &RE) const {
4574 return (RE.r_word0 >> 24) & 0xf;
4578 const MachO::any_relocation_info &RE) const {
4579 if (isRelocationScattered(RE))
4580 return getScatteredRelocationAddress(RE);
4581 return getPlainRelocationAddress(RE);
4585 const MachO::any_relocation_info &RE) const {
4586 if (isRelocationScattered(RE))
4587 return getScatteredRelocationPCRel(RE);
4588 return getPlainRelocationPCRel(*this, RE);
4592 const MachO::any_relocation_info &RE) const {
4593 if (isRelocationScattered(RE))
4594 return getScatteredRelocationLength(RE);
4595 return getPlainRelocationLength(*this, RE);
4600 const MachO::any_relocation_info &RE) const {
4601 if (isRelocationScattered(RE))
4602 return getScatteredRelocationType(RE);
4603 return getPlainRelocationType(*this, RE);
4608 const MachO::any_relocation_info &RE) const {
4609 if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
4611 unsigned SecNum = getPlainRelocationSymbolNum(RE);