Lines Matching refs:CalculatedValue
611 int64_t CalculatedValue = evaluateMIPS64Relocation(Section, Offset, Value, in resolveMIPS64Relocation() local
616 CalculatedValue = evaluateMIPS64Relocation(Section, Offset, 0, RelType, in resolveMIPS64Relocation()
617 CalculatedValue, SymOffset, in resolveMIPS64Relocation()
622 CalculatedValue = evaluateMIPS64Relocation(Section, Offset, 0, RelType, in resolveMIPS64Relocation()
623 CalculatedValue, SymOffset, in resolveMIPS64Relocation()
626 applyMIPS64Relocation(Section.getAddressWithOffset(Offset), CalculatedValue, in resolveMIPS64Relocation()
731 int64_t CalculatedValue, in applyMIPS64Relocation() argument
741 writeBytesUnaligned(CalculatedValue & 0xffffffff, TargetPtr, 4); in applyMIPS64Relocation()
745 writeBytesUnaligned(CalculatedValue, TargetPtr, 8); in applyMIPS64Relocation()
749 Insn = (Insn & 0xfc000000) | CalculatedValue; in applyMIPS64Relocation()
753 Insn = (Insn & 0xffff0000) | (CalculatedValue & 0xffff); in applyMIPS64Relocation()
765 Insn = (Insn & 0xffff0000) | CalculatedValue; in applyMIPS64Relocation()
769 Insn = (Insn & 0xfffc0000) | CalculatedValue; in applyMIPS64Relocation()
773 Insn = (Insn & 0xfff80000) | CalculatedValue; in applyMIPS64Relocation()
777 Insn = (Insn & 0xffe00000) | CalculatedValue; in applyMIPS64Relocation()