Lines Matching refs:type
105 uint8_t type; member
110 static int add_reloc(unsigned int type, uint64_t off) in add_reloc() argument
115 switch (type) { in add_reloc()
143 .type = type, in add_reloc()
153 uint32_t off, type; in parse_mips32_rel() local
158 type = is_be ? be32toh(rel->r_info) : le32toh(rel->r_info); in parse_mips32_rel()
159 type = ELF32_R_TYPE(type); in parse_mips32_rel()
161 return add_reloc(type, off); in parse_mips32_rel()
167 uint64_t off, type; in parse_mips64_rela() local
172 type = rel->r_info >> (64 - 8); in parse_mips64_rela()
174 return add_reloc(type, off); in parse_mips64_rela()
387 output_uint(&buf, relocs[i].type); in main()