Searched refs:current_thunk_to_write_ (Results 1 – 2 of 2) sorted by relevance
55 if (current_thunk_to_write_ == thunk_locations_.size()) { in WriteThunks()59 if (UNLIKELY(aligned_offset == thunk_locations_[current_thunk_to_write_])) { in WriteThunks()60 ++current_thunk_to_write_; in WriteThunks()87 thunk_locations_(), current_thunk_to_write_(0u), unprocessed_patches_() { in ArmBaseRelativePatcher()130 DCHECK(current_thunk_to_write_ == thunk_locations_.size() || in CalculateDisplacement()131 thunk_locations_[current_thunk_to_write_] > patch_offset); in CalculateDisplacement()132 if (current_thunk_to_write_ != thunk_locations_.size() && in CalculateDisplacement()133 thunk_locations_[current_thunk_to_write_] - patch_offset < max_positive_displacement_) { in CalculateDisplacement()134 displacement = thunk_locations_[current_thunk_to_write_] - patch_offset; in CalculateDisplacement()137 DCHECK_NE(current_thunk_to_write_, 0u); in CalculateDisplacement()[all …]
59 size_t current_thunk_to_write_; variable