Lines Matching refs:delta
79 void ImageHeader::RelocateImageReferences(int64_t delta) { in RelocateImageReferences() argument
80 CHECK_ALIGNED(delta, kPageSize) << "relocation delta must be page aligned"; in RelocateImageReferences()
81 oat_file_begin_ += delta; in RelocateImageReferences()
82 oat_data_begin_ += delta; in RelocateImageReferences()
83 oat_data_end_ += delta; in RelocateImageReferences()
84 oat_file_end_ += delta; in RelocateImageReferences()
85 image_begin_ += delta; in RelocateImageReferences()
86 image_roots_ += delta; in RelocateImageReferences()
89 void ImageHeader::RelocateBootImageReferences(int64_t delta) { in RelocateBootImageReferences() argument
90 CHECK_ALIGNED(delta, kPageSize) << "relocation delta must be page aligned"; in RelocateBootImageReferences()
93 boot_image_begin_ += delta; in RelocateBootImageReferences()
96 image_methods_[i] += delta; in RelocateBootImageReferences()