Searched refs:fNumGroups (Results 1 – 7 of 7) sorted by relevance
/haiku/src/add-ons/kernel/file_systems/ext2/ |
H A D | BlockAllocator.cpp | 590 fNumGroups(0), in BlockAllocator() 610 fNumGroups = fVolume->NumGroups(); in Initialize() 616 ", num blocks: %" B_PRIu64 "\n", fBlocksPerGroup, fNumGroups, in Initialize() 619 fGroups = new(std::nothrow) AllocationBlockGroup[fNumGroups]; in Initialize() 655 minimum, maximum, blockGroup, start, fNumGroups); in AllocateBlocks() 663 AllocationBlockGroup* last = &fGroups[fNumGroups]; in AllocateBlocks() 832 if (group >= fNumGroups) { in Free() 834 "%" B_PRIu32 ")\n", group, fNumGroups); in Free() 873 uint32 numGroups = allocator->fNumGroups - 1; in _Initialize()
|
H A D | Volume.cpp | 85 uint32 blockCount = (fNumGroups + fGroupsPerBlock - 1) in ~Volume() 198 fNumGroups = numBlocks / blocksPerGroup; in Mount() 200 fNumGroups++; in Mount() 225 B_PRIu32 "\n", fBlockSize, fNumGroups, in Mount() 228 uint32 blockCount = (fNumGroups + fGroupsPerBlock - 1) / fGroupsPerBlock; in Mount() 484 if (index < 0 || (uint32)index > fNumGroups) in GetBlockGroup() 522 if (index < 0 || (uint32)index > fNumGroups) in WriteBlockGroup()
|
H A D | BlockAllocator.h | 51 uint32 fNumGroups; variable
|
H A D | Volume.h | 52 { return fNumGroups; } in NumGroups() 181 uint32 fNumGroups; variable
|
/haiku/src/add-ons/kernel/file_systems/bfs/ |
H A D | BlockAllocator.cpp | 550 fNumGroups = fVolume->AllocationGroups(); in Initialize() 554 fGroups = new(std::nothrow) AllocationGroup[fNumGroups]; in Initialize() 596 for (int32 i = 0; i < fNumGroups; i++) { in InitializeAndClearBitmap() 604 if (i == fNumGroups - 1) { in InitializeAndClearBitmap() 624 for (int32 i = 0; i < fNumGroups; i++) { in InitializeAndClearBitmap() 659 int32 numGroups = allocator->fNumGroups; in _Initialize() 776 for (int32 i = 0; i < fNumGroups + 1; i++, groupIndex++, start = 0) { in AllocateBlocks() 777 groupIndex = groupIndex % fNumGroups; in AllocateBlocks() 1043 if (group < 0 || group >= fNumGroups in Free() 1100 for (int32 i = 0; i < fNumGroups; i++) { in Fragment() [all …]
|
H A D | BlockAllocator.h | 83 int32 fNumGroups; variable
|
H A D | CheckVisitor.cpp | 120 for (int32 i = 0; i < fNumGroups; i++) { in WriteBackCheckBitmap()
|