Searched refs:num_thunks (Results 1 - 1 of 1) sorted by relevance

/art/compiler/linker/arm64/
H A Drelative_patcher_arm64.cc162 size_t num_thunks = current_method_thunks_.size() / kAdrpThunkSize; local
163 CHECK_LE(num_thunks, processed_adrp_thunks_);
164 for (size_t i = 0u; i != num_thunks; ++i) {
165 const auto& entry = adrp_thunk_locations_[processed_adrp_thunks_ - num_thunks + i];
277 size_t num_thunks = current_method_thunks_.size() / kAdrpThunkSize; local
278 CHECK_LE(num_thunks, processed_adrp_thunks_);
280 for (size_t i = processed_adrp_thunks_ - num_thunks; ; ++i) {
283 size_t idx = num_thunks - (processed_adrp_thunks_ - i);

Completed in 28 milliseconds