Lines Matching full:relocation
3 * MIPS Relocation
7 * Relocation data, found in the .rel section, is generated by the mips-relocs
9 * be fixed up during relocation.
18 * Each pair of two integers represents a relocation that must be applied. The
19 * first integer represents the type of relocation as a standard ELF relocation
21 * apply the relocation, relative to the previous relocation or for the first
22 * relocation the start of the relocated .text section.
24 * The end of the relocation data is indicated when type R_MIPS_NONE (0) is
37 * Read one whole unsigned integer from the relocation data pointed to by @buf,
58 * apply_reloc() - Apply a single relocation
61 * @off: the relocation offset, ie. number of bytes we're moving U-Boot by
63 * Apply a single relocation of type @type at @addr. This function is
122 panic("Mis-aligned relocation\n"); in relocate_code()