Lines Matching refs:kMaxDirect
32 kMaxDirect(EXT2_DIRECT_BLOCKS), in DataStream()
33 kMaxIndirect(kMaxDirect + kIndirectsPerBlock), in DataStream()
191 if (fNumBlocks <= kMaxDirect) { in Enlarge()
267 if (numBlocks < kMaxDirect) { in Shrink()
338 if (numBlocks > kMaxDirect) { in _BlocksNeeded()
339 if (fNumBlocks <= kMaxDirect) in _BlocksNeeded()
535 uint32 end = numBlocks > kMaxDirect ? kMaxDirect : numBlocks; in _AddForDirectBlocks()
547 uint32 start = fNumBlocks - kMaxDirect; in _AddForIndirectBlock()
548 uint32 end = numBlocks - kMaxDirect; in _AddForIndirectBlock()
736 off_t end = fNumBlocks > kMaxDirect ? kMaxDirect : fNumBlocks; in _RemoveFromDirectBlocks()
748 off_t start = numBlocks <= kMaxDirect ? 0 : numBlocks - kMaxDirect; in _RemoveFromIndirectBlock()
749 off_t end = fNumBlocks - kMaxDirect; in _RemoveFromIndirectBlock()