Home | History | Annotate | Download | only in src

Lines Matching refs:relocations

5 // Pack R_ARM_RELATIVE relocations into a more compact form.
8 // turns a large set of R_ARM_RELATIVE relocations into a much smaller set
32 // A RelocationPacker packs vectors of R_ARM_RELATIVE relocations into more
36 // Pack R_ARM_RELATIVE relocations into a more compact form.
37 // |relocations| is a vector of R_ARM_RELATIVE relocation structs.
38 // |packed| is the vector of packed bytes into which relocations are packed.
39 static void PackRelativeRelocations(const std::vector<Elf32_Rel>& relocations,
42 // Unpack R_ARM_RELATIVE relocations from their more compact form.
43 // |packed| is the vector of packed relocations.
44 // |relocations| is a vector of unpacked R_ARM_RELATIVE relocation structs.
46 std::vector<Elf32_Rel>* relocations);