Lines Matching refs:Placeholder
303 uint32_t *Placeholder = in resolveX86_64Relocation() local
307 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86_64Relocation()
316 uint64_t *Placeholder = in resolveX86_64Relocation() local
320 *Target = *Placeholder + Value + Addend - FinalAddress; in resolveX86_64Relocation()
333 uint32_t *Placeholder = in resolveX86Relocation() local
336 *Target = *Placeholder + Value + Addend; in resolveX86Relocation()
342 uint32_t *Placeholder = in resolveX86Relocation() local
346 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86Relocation()
503 uint32_t *Placeholder = in resolveARMRelocation() local
526 *TargetPtr = *Placeholder + Value; in resolveARMRelocation()
534 assert((*Placeholder & 0x000F0FFF) == 0); in resolveARMRelocation()
536 *TargetPtr = *Placeholder | (Value & 0xFFF); in resolveARMRelocation()
544 assert((*Placeholder & 0x000F0FFF) == 0); in resolveARMRelocation()
547 *TargetPtr = *Placeholder | (Value & 0xFFF); in resolveARMRelocation()
574 uint32_t *Placeholder = in resolveMIPSRelocation() local
590 *TargetPtr = Value + (*Placeholder); in resolveMIPSRelocation()
593 *TargetPtr = ((*Placeholder) & 0xfc000000) | ((Value & 0x0fffffff) >> 2); in resolveMIPSRelocation()
597 Value += ((*Placeholder) & 0x0000ffff) << 16; in resolveMIPSRelocation()
599 ((*Placeholder) & 0xffff0000) | (((Value + 0x8000) >> 16) & 0xffff); in resolveMIPSRelocation()
602 Value += ((*Placeholder) & 0x0000ffff); in resolveMIPSRelocation()
603 *TargetPtr = ((*Placeholder) & 0xffff0000) | (Value & 0xffff); in resolveMIPSRelocation()