Home
last modified time | relevance | path

Searched refs:dwReadSector (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/external/rkupdate/
H A DRKDevice.cpp343 DWORD dwReadSector = 0, dwMaxReadWriteOnce; in ReadMutilSector() local
354 dwReadSector = (dwCount >= dwMaxReadWriteOnce) ? dwMaxReadWriteOnce : dwCount; in ReadMutilSector()
355 if (dwReadSector > iValidSecCount) in ReadMutilSector()
357 dwReadSector = iValidSecCount; in ReadMutilSector()
360 iRet = m_pComm->RKU_ReadSector(iCurPos, dwReadSector, lpBuffer); in ReadMutilSector()
370 dwCount -= dwReadSector; in ReadMutilSector()
371 iUsedSecCount += dwReadSector; in ReadMutilSector()
372 iValidSecCount -= dwReadSector; in ReadMutilSector()
378 lpBuffer += dwReadSector * 512; in ReadMutilSector()