Searched refs:newStart (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.cpp434 uint32 newStart = (startIndex + 1) << 5; local
444 --newStart;
455 start = newStart;
474 uint32 newStart = (startIndex + 1) << 5; local
480 newLength, newStart);
482 if (newStart != 0) {
493 --newStart;
497 "to %" B_PRIu32 " and new length to %" B_PRIu32 "\n", newStart,
512 start = newStart;
H A DBlockAllocator.cpp340 uint32 newStart = start; local
341 block.FindPreviousMarked(newStart);
342 newStart++;
344 if (newEnd - newStart > fLargestLength) {
345 fLargestLength = newEnd - newStart;
346 fLargestStart = newStart;
/haiku/src/tools/checkstyle/
H A Dutils.py133 newStart = min(lastHighlight[0], highlight[0])
140 highlight = (newStart, newEnd, newComment)
/haiku/src/add-ons/kernel/partitioning_systems/gpt/
H A Dgpt.cpp292 off_t newStart = *start; local
293 if (newStart < 0)
294 newStart = 0;
296 if (newStart + child->size > partition->size)
297 newStart = partition->size - child->size;
299 newStart = block_align(partition, newStart, false);
300 if (newStart > child->offset) {
307 if (other->offset < newStart + child->size)
308 newStart
[all...]

Completed in 36 milliseconds