loc_new            73 arch/mips/kernel/relocate.c static int __init apply_r_mips_64_rel(u32 *loc_orig, u32 *loc_new, long offset)
loc_new            75 arch/mips/kernel/relocate.c 	*(u64 *)loc_new += offset;
loc_new            80 arch/mips/kernel/relocate.c static int __init apply_r_mips_32_rel(u32 *loc_orig, u32 *loc_new, long offset)
loc_new            82 arch/mips/kernel/relocate.c 	*loc_new += offset;
loc_new            87 arch/mips/kernel/relocate.c static int __init apply_r_mips_26_rel(u32 *loc_orig, u32 *loc_new, long offset)
loc_new           103 arch/mips/kernel/relocate.c 	if ((target_addr & 0xf0000000) != ((unsigned long)loc_new & 0xf0000000)) {
loc_new           108 arch/mips/kernel/relocate.c 	target_addr -= (unsigned long)loc_new & ~0x03ffffff;
loc_new           111 arch/mips/kernel/relocate.c 	*loc_new = (*loc_new & ~0x03ffffff) | (target_addr & 0x03ffffff);
loc_new           117 arch/mips/kernel/relocate.c static int __init apply_r_mips_hi16_rel(u32 *loc_orig, u32 *loc_new, long offset)
loc_new           124 arch/mips/kernel/relocate.c 	*loc_new = (insn & ~0xffff) | ((target >> 16) & 0xffff);
loc_new           139 arch/mips/kernel/relocate.c 	u32 *loc_new;
loc_new           150 arch/mips/kernel/relocate.c 		loc_new = RELOCATED(loc_orig);
loc_new           159 arch/mips/kernel/relocate.c 		res = reloc_handlers_rel[type](loc_orig, loc_new, offset);
loc_new           284 arch/mips/kernel/relocate.c static inline int __init relocation_addr_valid(void *loc_new)
loc_new           286 arch/mips/kernel/relocate.c 	if ((unsigned long)loc_new & 0x0000ffff) {
loc_new           290 arch/mips/kernel/relocate.c 	if ((unsigned long)loc_new < (unsigned long)&_end) {
loc_new           299 arch/mips/kernel/relocate.c 	void *loc_new;
loc_new           323 arch/mips/kernel/relocate.c 	loc_new = determine_relocation_address();
loc_new           326 arch/mips/kernel/relocate.c 	if (relocation_addr_valid(loc_new))
loc_new           327 arch/mips/kernel/relocate.c 		offset = (unsigned long)loc_new - (unsigned long)(&_text);
loc_new           357 arch/mips/kernel/relocate.c 		memcpy(loc_new, &_text, kernel_length);
loc_new           360 arch/mips/kernel/relocate.c 		res = do_relocations(&_text, loc_new, offset);
loc_new           365 arch/mips/kernel/relocate.c 		sync_icache(loc_new, kernel_length);