Home
last modified time | relevance | path

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

/FreeRTOS-Plus/Source/Reliance-Edge/core/driver/
A Dblockio.c59 uint32_t ulBlockCount, in RedIoRead() argument
65 ( ulBlockStart >= gaRedVolume[ bVolNum ].ulBlockCount ) || in RedIoRead()
66 ( ( gaRedVolume[ bVolNum ].ulBlockCount - ulBlockStart ) < ulBlockCount ) || in RedIoRead()
67 ( ulBlockCount == 0U ) || in RedIoRead()
77 uint32_t ulSectorCount = ulBlockCount << bSectorShift; in RedIoRead()
81 REDASSERT( ( ulSectorCount >> bSectorShift ) == ulBlockCount ); in RedIoRead()
117 uint32_t ulBlockCount, in RedIoWrite() argument
123 ( ulBlockStart >= gaRedVolume[ bVolNum ].ulBlockCount ) || in RedIoWrite()
124 ( ( gaRedVolume[ bVolNum ].ulBlockCount - ulBlockStart ) < ulBlockCount ) || in RedIoWrite()
125 ( ulBlockCount == 0U ) || in RedIoWrite()
[all …]
A Dbuffer.c423 uint32_t ulBlockCount ) in RedBufferFlush() argument
427 if( ( ulBlockStart >= gpRedVolume->ulBlockCount ) || in RedBufferFlush()
428 ( ( gpRedVolume->ulBlockCount - ulBlockStart ) < ulBlockCount ) || in RedBufferFlush()
429 ( ulBlockCount == 0U ) ) in RedBufferFlush()
498 ( ulBlockNew >= gpRedVolume->ulBlockCount ) ) in RedBufferBranch()
559 uint32_t ulBlockCount ) in RedBufferDiscardRange() argument
563 if( ( ulBlockStart >= gpRedVolume->ulBlockCount ) || in RedBufferDiscardRange()
564 ( ( gpRedVolume->ulBlockCount - ulBlockStart ) < ulBlockCount ) || in RedBufferDiscardRange()
565 ( ulBlockCount == 0U ) ) in RedBufferDiscardRange()
581 ( pHead->ulBlock < ( ulBlockStart + ulBlockCount ) ) ) in RedBufferDiscardRange()
[all …]
A Dimapinline.c63 ( ulBlock >= gpRedVolume->ulBlockCount ) || in RedImapIBlockGet()
99 ( ulBlock >= gpRedVolume->ulBlockCount ) ) in RedImapIBlockSet()
A Dimap.c63 ( ulBlock >= gpRedVolume->ulBlockCount ) || in RedImapBlockGet()
114 ( ulBlock >= gpRedVolume->ulBlockCount ) ) in RedImapBlockSet()
252 if( gpRedMR->ulAllocNextBlock == gpRedVolume->ulBlockCount ) in RedImapAllocBlock()
301 ( ulBlock >= gpRedVolume->ulBlockCount ) || in RedImapBlockState()
A Dinodedata.c84 uint32_t ulBlockCount,
190 uint32_t ulBlockCount = ulRemaining >> BLOCK_SIZE_P2; in RedInodeDataRead() local
198 ulReadIndex += ulBlockCount << BLOCK_SIZE_P2; in RedInodeDataRead()
199 ulRemaining -= ulBlockCount << BLOCK_SIZE_P2; in RedInodeDataRead()
312 uint32_t ulBlocksWritten = ulBlockCount; in RedInodeDataWrite()
329 if( ulBlocksWritten < ulBlockCount ) in RedInodeDataWrite()
1227 uint32_t ulBlockCount, in ReadAligned() argument
1373 uint32_t ulBlockCount = *pulBlockCount; in WriteAligned() local
1403 ulBlockCount = ulBlockIndex; in WriteAligned()
1408 ulBlockCount--; in WriteAligned()
[all …]
A Dformat.c191 pMB->ulBlockCount = gpRedVolume->ulBlockCount; in RedVolFormat()
233 ret = RedBufferDiscardRange( 0U, gpRedVolume->ulBlockCount ); in RedVolFormat()
A Dvolume.c72 ( void ) RedBufferDiscardRange( 0U, gpRedVolume->ulBlockCount ); in RedVolMount()
108 ( pMB->ulBlockCount != gpRedVolume->ulBlockCount ) || in RedVolMountMaster()
370 ret = RedBufferFlush( 0U, gpRedVolume->ulBlockCount ); in RedVolTransact()
A Dimapextern.c73 ( ulBlock >= gpRedVolume->ulBlockCount ) || in RedImapEBlockGet()
135 ( ulBlock >= gpRedVolume->ulBlockCount ) ) in RedImapEBlockSet()
A Dcore.c180 … pVol->ulBlockCount = ( uint32_t ) ( pVolConf->ullSectorCount >> pVol->bBlockSectorShift ); in RedCoreInit()
182 if( pVol->ulBlockCount < MINIMUM_METADATA_BLOCKS ) in RedCoreInit()
210 pCoreVol->fImapInline = ( pVol->ulBlockCount - 3U ) <= METAROOT_ENTRIES; in RedCoreInit()
232 … ( ( pVol->ulBlockCount - 3U ) + ( ( IMAPNODE_ENTRIES + 2U ) - 1U ) ) / ( IMAPNODE_ENTRIES + 2U ); in RedCoreInit()
246 if( pCoreVol->ulFirstAllocableBN > pVol->ulBlockCount ) in RedCoreInit()
255 pVol->ulBlocksAllocable = pVol->ulBlockCount - pCoreVol->ulFirstAllocableBN; in RedCoreInit()
445 ret = RedBufferDiscardRange( 0U, gpRedVolume->ulBlockCount ); in RedCoreVolUnmount()
527 pStatFS->f_blocks = gpRedVolume->ulBlockCount; in RedCoreVolStat()
/FreeRTOS-Plus/Source/Reliance-Edge/core/include/
A Dredcore.h50 uint32_t ulBlockCount,
55 uint32_t ulBlockCount,
106 uint32_t ulBlockCount );
115 uint32_t ulBlockCount );
A Drednodes.h71 uint32_t ulBlockCount; /**< Compile-time configured number of logical blocks. */ member
/FreeRTOS-Plus/Source/Reliance-Edge/include/
A Dredvolume.h112 uint32_t ulBlockCount; member
/FreeRTOS-Plus/Source/Reliance-Edge/os/freertos/services/
A Dosbdev.c1409 …gapbRamDisk[ bVolNum ] = ALLOCATE_CLEARED_MEMORY( gaRedVolume[ bVolNum ].ulBlockCount, REDCONF_BLO… in DiskOpen()

Completed in 33 milliseconds