Home
last modified time | relevance | path

Searched refs:to_patch (Results 1 – 3 of 3) sorted by relevance

/art/compiler/
Delf_writer_quick.cc124 auto* to_patch = reinterpret_cast<UnalignedAddress*>(buffer->data() + location); in Patch() local
127 *to_patch = (base_address + *to_patch); in Patch()
130 *to_patch = (base_address + *to_patch) - (buffer_address + location); in Patch()
133 *to_patch = (base_address + *to_patch) - buffer_address; in Patch()
/art/runtime/
Delf_file_impl.h125 uint8_t* to_patch, const uint8_t* to_patch_end);
Delf_file.cc1443 uint8_t* to_patch, const uint8_t* to_patch_end) { in ApplyOatPatches() argument
1446 to_patch += DecodeUnsignedLeb128(&patches); in ApplyOatPatches()
1448 DCHECK_LT(to_patch, to_patch_end) << "Patch past the end of section."; in ApplyOatPatches()
1449 *reinterpret_cast<UnalignedAddress*>(to_patch) += delta; in ApplyOatPatches()