Lines Matching refs:code
93 unsigned int code,
102 : code_(code), name_(name), reloc_type_(rtype), reloc_class_(rclass),
118 if (code == elfcpp::R_ARM_ABS8)
120 else if (code == elfcpp::R_ARM_ABS16)
129 if (code != elfcpp::R_ARM_V4BX)
152 if (code != elfcpp::R_ARM_COPY)
275 unsigned int code = elfcpp::R_ARM_##name; \
276 gold_assert(code < Property_table_size); \
277 this->table_[code] = \
290 // Return a string describing a relocation code that fails to get a
294 Arm_reloc_property_table::reloc_name_in_error_message(unsigned int code)
296 gold_assert(code < Property_table_size);
298 const Arm_reloc_property* arp = this->table_[code];
303 sprintf(buffer, _("invalid reloc %u"), code);