Searched refs:uvalue (Results 1 – 4 of 4) sorted by relevance
/toolchain/binutils/binutils-2.25/binutils/ |
D | dwarf.c | 940 dwarf_vma uvalue; in decode_location_expression() local 952 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end); in decode_location_expression() 953 printf ("DW_OP_addr: %s", dwarf_vmatoa ("x", uvalue)); in decode_location_expression() 959 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end); in decode_location_expression() 960 printf ("DW_OP_const1u: %lu", (unsigned long) uvalue); in decode_location_expression() 967 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end); in decode_location_expression() 968 printf ("DW_OP_const2u: %lu", (unsigned long) uvalue); in decode_location_expression() 975 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end); in decode_location_expression() 976 printf ("DW_OP_const4u: %lu", (unsigned long) uvalue); in decode_location_expression() 983 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end); in decode_location_expression() [all …]
|
D | ChangeLog-2011 | 411 DW_OP_GNU_reinterpret, if uvalue is 0, don't add cu_offset. 858 and uvalue type.
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | elf32-score7.c | 228 unsigned long hi16_offset, hi16_value, uvalue; in score_elf_lo16_reloc() local 237 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_lo16_reloc() 238 hi16_offset = (uvalue >> 16) << 1; in score_elf_lo16_reloc() 241 offset = (uvalue & 0xffff) << 1; in score_elf_lo16_reloc() 522 signed long hi16_offset, hi16_value, uvalue; in score_elf_got_lo16_reloc() local 531 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_got_lo16_reloc() 532 if ((uvalue > -0x8000) && (uvalue < 0x7fff)) in score_elf_got_lo16_reloc() 535 hi16_offset = (uvalue >> 16) & 0x7fff; in score_elf_got_lo16_reloc() 538 offset = (uvalue & 0xffff) << 1; in score_elf_got_lo16_reloc() 1722 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue; in score_elf_add_to_rel() local [all …]
|
D | elf32-score.c | 329 unsigned long hi16_offset, hi16_value, uvalue; in score_elf_lo16_reloc() local 338 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_lo16_reloc() 339 hi16_offset = (uvalue >> 16) << 1; in score_elf_lo16_reloc() 342 offset = (uvalue & 0xffff) << 1; in score_elf_lo16_reloc() 621 signed long hi16_offset, hi16_value, uvalue; in score_elf_got_lo16_reloc() local 630 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_got_lo16_reloc() 631 if ((uvalue > -0x8000) && (uvalue < 0x7fff)) in score_elf_got_lo16_reloc() 634 hi16_offset = (uvalue >> 16) & 0x7fff; in score_elf_got_lo16_reloc() 637 offset = (uvalue & 0xffff) << 1; in score_elf_got_lo16_reloc() 1855 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue; in score_elf_add_to_rel() local [all …]
|