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