Searched refs:newEnd (Results 1 - 5 of 5) sorted by relevance

/haiku/src/tools/checkstyle/
H A Dutils.py134 newEnd = max(lastHighlight[1], highlight[1])
140 highlight = (newStart, newEnd, newComment)
/haiku/src/system/kernel/vm/
H A DVMUserAddressSpace.cpp228 addr_t newEnd = area->Base() + (newSize - 1); local
231 return fEndAddress >= newEnd;
233 if (next->Base() > newEnd)
242 && next->Base() + (next->Size() - 1) >= newEnd;
252 addr_t newEnd = area->Base() + (newSize - 1); local
254 if (next != NULL && next->Base() <= newEnd) {
257 || next->Base() + (next->Size() - 1) < newEnd) {
/haiku/src/add-ons/kernel/partitioning_systems/gpt/
H A Dgpt.cpp225 off_t newEnd = partition->offset + newSize; local
231 if (child->offset + child->size > newEnd)
232 newEnd = child->offset + child->size;
235 newSize = block_align(partition, newEnd - partition->offset, true);
264 off_t newEnd = child->offset + newSize; local
271 if (newEnd > other->offset)
272 newEnd = other->offset;
275 *size = block_align(partition, newEnd - child->offset, false);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBlockAllocator.cpp337 uint32 newEnd = start + length; local
338 block.FindNextMarked(newEnd);
344 if (newEnd - newStart > fLargestLength) {
345 fLargestLength = newEnd - newStart;
/haiku/src/add-ons/kernel/file_systems/layers/write_overlay/
H A Dwrite_overlay.cpp817 off_t newEnd = newPosition + newLength; local
826 if (other->position > newEnd) {
836 if (swallowCount == 1 && otherEnd >= newEnd) {
859 if (otherEnd > newEnd)
860 newLength += otherEnd - newEnd;
876 off_t newEnd = newPosition + newLength; local
877 if (newEnd > fStat.st_size) {
878 fStat.st_size = newEnd;
882 file_cache_set_size(fFileCache, newEnd);

Completed in 56 milliseconds