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);
4543 MachOObjectFile::isRelocationScattered(const MachO::any_relocation_info &RE)
4547 return getPlainRelocationAddress(RE) & MachO::R_SCATTERED;
4551 const MachO::any_relocation_info &RE) const {
4553 return RE.r_word1 & 0xffffff;
4554 return RE.r_word1 >> 8;
4558 const MachO::any_relocation_info &RE) const {
4560 return (RE.r_word1 >> 27) & 1;
4561 return (RE.r_word1 >> 4) & 1;
4565 const MachO::any_relocation_info &RE) const {
4566 return RE.r_word0 >> 31;
4570 const MachO::any_relocation_info &RE) const {
4571 return RE.r_word1;
4575 const MachO::any_relocation_info &RE) const {
4576 return (RE.r_word0 >> 24) & 0xf;
4580 const MachO::any_relocation_info &RE) const {
4581 if (isRelocationScattered(RE))
4582 return getScatteredRelocationAddress(RE);
4583 return getPlainRelocationAddress(RE);
4587 const MachO::any_relocation_info &RE) const {
4588 if (isRelocationScattered(RE))
4589 return getScatteredRelocationPCRel(RE);
4590 return getPlainRelocationPCRel(*this, RE);
4594 const MachO::any_relocation_info &RE) const {
4595 if (isRelocationScattered(RE))
4596 return getScatteredRelocationLength(RE);
4597 return getPlainRelocationLength(*this, RE);
4602 const MachO::any_relocation_info &RE) const {
4603 if (isRelocationScattered(RE))
4604 return getScatteredRelocationType(RE);
4605 return getPlainRelocationType(*this, RE);
4610 const MachO::any_relocation_info &RE) const {
4611 if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
4613 unsigned SecNum = getPlainRelocationSymbolNum(RE);