Home | History | Annotate | Download | only in patchoat

Lines Matching refs:patches

167   // Create the map where we will write the image patches to.
262 // Create the map where we will write the image patches to.
615 uintptr_t* patches = reinterpret_cast<uintptr_t*>(oat_file_->Begin() + patches_sec->sh_offset);
616 uintptr_t* patches_end = patches + (patches_sec->sh_size/sizeof(uintptr_t));
629 for (; patches < patches_end; patches++) {
630 if (oat_text_sec->sh_size <= *patches) {
744 uintptr_t* patches = reinterpret_cast<uintptr_t*>(oat_file_->Begin() + patches_sec->sh_offset);
745 uintptr_t* patches_end = patches + (patches_sec->sh_size/sizeof(uintptr_t));
751 for (; patches < patches_end; patches++) {
752 CHECK_LT(*patches, oat_text_sec->sh_size) << "Bad Patch";
753 uint32_t* patch_loc = reinterpret_cast<uint32_t*>(to_patch + *patches);