Lines Matching refs:location
66 uint8_t *location; in apply_relocate_add() local
74 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add()
105 reloc_put32(location, relocation); in apply_relocate_add()
108 reloc_put24(location, relocation); in apply_relocate_add()
111 reloc_put16(location, relocation); in apply_relocate_add()
114 *location = relocation; in apply_relocate_add()
121 value = relocation - (uint32_t) location; in apply_relocate_add()
122 reloc_put32(location, value); in apply_relocate_add()
125 value = relocation - (uint32_t) location; in apply_relocate_add()
126 reloc_put16(location, value); in apply_relocate_add()
129 *location = relocation - (uint32_t) location; in apply_relocate_add()