Searched refs:fNumGroups (Results 1 - 7 of 7) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBlockAllocator.h51 uint32 fNumGroups; member in class:BlockAllocator
H A DVolume.h52 { return fNumGroups; }
181 uint32 fNumGroups; member in class:Volume
H A DVolume.cpp85 uint32 blockCount = (fNumGroups + fGroupsPerBlock - 1)
198 fNumGroups = numBlocks / blocksPerGroup;
200 fNumGroups++;
225 B_PRIu32 "\n", fBlockSize, fNumGroups,
228 uint32 blockCount = (fNumGroups + fGroupsPerBlock - 1) / fGroupsPerBlock;
484 if (index < 0 || (uint32)index > fNumGroups)
522 if (index < 0 || (uint32)index > fNumGroups)
H A DBlockAllocator.cpp590 fNumGroups(0),
610 fNumGroups = fVolume->NumGroups();
616 ", num blocks: %" B_PRIu64 "\n", fBlocksPerGroup, fNumGroups,
619 fGroups = new(std::nothrow) AllocationBlockGroup[fNumGroups];
655 minimum, maximum, blockGroup, start, fNumGroups);
663 AllocationBlockGroup* last = &fGroups[fNumGroups];
832 if (group >= fNumGroups) {
833 panic("BlockAllocator::Free() group %" B_PRIu32 " too big (fNumGroups "
834 "%" B_PRIu32 ")\n", group, fNumGroups);
873 uint32 numGroups = allocator->fNumGroups
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBlockAllocator.h83 int32 fNumGroups; member in class:BlockAllocator
H A DBlockAllocator.cpp525 fNumGroups = fVolume->AllocationGroups();
531 fGroups = new(std::nothrow) AllocationGroup[fNumGroups];
573 for (int32 i = 0; i < fNumGroups; i++) {
581 if (i == fNumGroups - 1) {
601 for (int32 i = 0; i < fNumGroups; i++) {
636 int32 numGroups = allocator->fNumGroups;
753 for (int32 i = 0; i < fNumGroups + 1; i++, groupIndex++, start = 0) {
754 groupIndex = groupIndex % fNumGroups;
1014 if (group < 0 || group >= fNumGroups
1071 for (int32 i = 0; i < fNumGroups;
[all...]
H A DCheckVisitor.cpp120 for (int32 i = 0; i < fNumGroups; i++) {

Completed in 62 milliseconds