Home
last modified time | relevance | path

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

/FreeRTOS-Plus/Source/Reliance-Edge/core/driver/
A Dblockio.c75 uint8_t bSectorShift = gaRedVolume[ bVolNum ].bBlockSectorShift; in RedIoRead() local
76 uint64_t ullSectorStart = ( uint64_t ) ulBlockStart << bSectorShift; in RedIoRead()
77 uint32_t ulSectorCount = ulBlockCount << bSectorShift; in RedIoRead()
80 REDASSERT( bSectorShift < 32U ); in RedIoRead()
81 REDASSERT( ( ulSectorCount >> bSectorShift ) == ulBlockCount ); in RedIoRead()
133 uint8_t bSectorShift = gaRedVolume[ bVolNum ].bBlockSectorShift; in RedIoWrite() local
134 uint64_t ullSectorStart = ( uint64_t ) ulBlockStart << bSectorShift; in RedIoWrite()
135 uint32_t ulSectorCount = ulBlockCount << bSectorShift; in RedIoWrite()
138 REDASSERT( bSectorShift < 32U ); in RedIoWrite()
139 REDASSERT( ( ulSectorCount >> bSectorShift ) == ulBlockCount ); in RedIoWrite()

Completed in 5 milliseconds