mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 03:39:39 +03:00
Avoid unnecessary memory writes
Before this change, qbt spent ~1% in these two functions, now it only spends about ~0.5% in my naive testing.
This commit is contained in:
parent
b519ece18b
commit
24cd7c3611
2 changed files with 8 additions and 9 deletions
|
@ -208,11 +208,10 @@ qlonglong PeerInfo::totalDownload() const
|
|||
QBitArray PeerInfo::pieces() const
|
||||
{
|
||||
QBitArray result(m_nativeInfo.pieces.size());
|
||||
|
||||
int i = 0;
|
||||
for (const bool bit : m_nativeInfo.pieces)
|
||||
result.setBit(i++, bit);
|
||||
|
||||
for (int i = 0; i < result.size(); ++i) {
|
||||
if (m_nativeInfo.pieces[i])
|
||||
result.setBit(i, true);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
@ -1202,10 +1202,10 @@ QVector<PeerInfo> TorrentHandle::peers() const
|
|||
QBitArray TorrentHandle::pieces() const
|
||||
{
|
||||
QBitArray result(m_nativeStatus.pieces.size());
|
||||
|
||||
for (int i = 0; i < m_nativeStatus.pieces.size(); ++i)
|
||||
result.setBit(i, m_nativeStatus.pieces.get_bit(LTPieceIndex {i}));
|
||||
|
||||
for (int i = 0; i < result.size(); ++i) {
|
||||
if (m_nativeStatus.pieces[LTPieceIndex {i}])
|
||||
result.setBit(i, true);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue