Searched refs:remap_ (Results 1 – 2 of 2) sorted by relevance
71 size_t last = RemapIndices ? remap_->size() : count_; in BinarySearch()74 size_t symbol_index = RemapIndices ? remap_.value()[current] : current; in BinarySearch()95 remap_.emplace(); // Construct the optional remap table. in BuildRemapTable()96 remap_->reserve(count_); in BuildRemapTable()111 remap_->push_back(symbol_idx); // Indices of function symbols only. in BuildRemapTable()117 std::sort(remap_->begin(), remap_->end(), comp); in BuildRemapTable()120 remap_->erase(std::unique(remap_->begin(), remap_->end(), pred), remap_->end()); in BuildRemapTable()121 remap_->shrink_to_fit(); in BuildRemapTable()127 if (!remap_.has_value()) { in GetName()
51 remap_.reset(); in ClearCache()71 std::optional<std::vector<uint32_t>> remap_; // Indices of function symbols sorted by address. variable