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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DCorruptionBlackBox.h38 void TransferredData(uint64 nStartPos, uint64 nEndPos, uint32 senderIP);
49 CCBBRecord(uint32 nStartPos, uint32 nEndPos, uint32 dwIP);
50 bool Merge(uint32 nStartPos, uint32 nEndPos, uint32 dwIP);
H A DCorruptionBlackBox.cpp42 CCorruptionBlackBox::CCBBRecord::CCBBRecord(uint32 nStartPos, uint32 nEndPos, uint32 dwIP) argument
44 if (nStartPos > nEndPos) {
48 m_nStartPos = nStartPos;
54 bool CCorruptionBlackBox::CCBBRecord::Merge(uint32 nStartPos, uint32 nEndPos, uint32 dwIP) argument
57 if (nStartPos == m_nEndPos + 1) {
61 m_nStartPos = nStartPos;
78 void CCorruptionBlackBox::TransferredData(uint64 nStartPos, uint64 nEndPos, uint32 senderIP) argument
80 if (nStartPos > nEndPos) {
86 uint16 nPart = (uint16)(nStartPos / PARTSIZE);
87 uint32 nRelStartPos = nStartPos
[all...]
H A DSHAHashSet.cpp97 CAICHHashTree* CAICHHashTree::FindHash(uint64 nStartPos, uint64 nSize, uint8* nLevel) argument
102 wxCHECK(nStartPos + nSize <= m_nDataSize, NULL);
105 if (nStartPos == 0 && nSize == m_nDataSize) {
116 if (nStartPos < nLeft) {
117 if (nStartPos + nSize > nLeft) { // sanity
128 return m_pLeftTree->FindHash(nStartPos, nSize, nLevel);
130 nStartPos -= nLeft;
131 if (nStartPos + nSize > nRight) { // sanity
142 return m_pRightTree->FindHash(nStartPos, nSize, nLevel);
250 void CAICHHashTree::SetBlockHash(uint64 nSize, uint64 nStartPos, CAICHHashAlg argument
272 CreatePartRecoveryData(uint64 nStartPos, uint64 nSize, CFileDataIO* fileDataOut, uint32 wHashIdent, bool b32BitIdent) argument
[all...]
H A DSHAHashSet.h170 void SetBlockHash(uint64 nSize, uint64 nStartPos, CAICHHashAlgo* pHashAlg);
173 CAICHHashTree* FindHash(uint64 nStartPos, uint64 nSize) argument
176 return FindHash(nStartPos, nSize, &buffer);
180 CAICHHashTree* FindHash(uint64 nStartPos, uint64 nSize, uint8* nLevel);
181 bool CreatePartRecoveryData(uint64 nStartPos, uint64 nSize,
H A DDownloadClient.cpp855 uint64 nStartPos = 0; local
876 nStartPos = data.ReadUInt64();
879 nStartPos = data.ReadUInt32();
886 nEndPos = nStartPos + (size - header_size);
898 if ( nEndPos == nStartPos || size != ((nEndPos - nStartPos) + header_size)) {
914 if ((cur_block->block->StartOffset <= nStartPos) && (cur_block->block->EndOffset >= nStartPos)) {
917 if (cur_block->block->StartOffset == nStartPos) {
925 % (size - header_size) % nStartPos
[all...]

Completed in 36 milliseconds