Lines Matching refs:mGpuVotes
64 auto it = mGpuVotes.find(static_cast<int>(hint)); in getGpuCapacityRequest()
65 if (it != mGpuVotes.end() && it->second.isTimeInRange(t)) { in getGpuCapacityRequest()
75 mGpuVotes[id] = vote; in add()
81 auto const it = mGpuVotes.find(voteId); in updateDuration()
82 if (it != mGpuVotes.end()) { in updateDuration()
103 for (const auto &v : mGpuVotes) { in anyTimedOut()
118 for (const auto &v : mGpuVotes) { in allTimedOut()
134 auto const it = mGpuVotes.find(voteId); in remove()
135 if (it != mGpuVotes.end()) { in remove()
136 mGpuVotes.erase(it); in remove()
153 auto const itr = mGpuVotes.find(voteId); in setUseVote()
154 if (itr == mGpuVotes.end()) { in setUseVote()
170 return mCpuVotes.size() + mGpuVotes.size(); in size()
175 auto const itr = mGpuVotes.find(voteId); in voteIsActive()
176 if (itr == mGpuVotes.end()) { in voteIsActive()
191 auto const itr = mGpuVotes.find(voteId); in voteTimeout()
192 if (itr == mGpuVotes.end()) { in voteTimeout()