Searched refs:Resize (Results 1 - 25 of 50) sorted by last modified time

12

/haiku/src/system/kernel/vm/
H A Dvm.cpp730 // Since VMCache::Resize() can temporarily drop the lock, we must
733 cache->Resize(cache->virtual_base + offset, priority);
852 // Since VMCache::Resize() can temporarily drop the lock, we must
855 cache->Resize(cache->virtual_base + firstNewSize, priority);
868 cache->Resize(cache->virtual_base + oldSize, priority);
5409 status = cache->Resize(cache->virtual_base + newSize, priority);
5463 status = cache->Resize(cache->virtual_base + newSize, priority);
5477 cache->Resize(cache->virtual_base + oldSize, priority);
H A DVMCache.cpp170 class Resize : public VMCacheTraceEntry { class in namespace:VMCacheTracing
172 Resize(VMCache* cache, off_t size) function in class:VMCacheTracing::Resize
1171 VMCache::Resize(off_t newSize, int priority) function in class:VMCache
1173 TRACE(("VMCache::Resize(cache %p, newSize %" B_PRIdOFF ") old size %"
1177 T(Resize(this, newSize));
H A DVMAnonymousCache.cpp393 } while (!sSwapHashTable.Resize(allocation, size));
502 if (fNoSwapPages->Resize(pageCount) != B_OK)
583 VMAnonymousCache::Resize(off_t newSize, int priority) function in class:VMAnonymousCache
586 if (fNoSwapPages->Resize(PAGE_ALIGN(newSize) >> PAGE_SHIFT) != B_OK)
592 return VMCache::Resize(newSize, priority);
H A DVMAnonymousCache.h45 virtual status_t Resize(off_t newSize, int priority);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp102 class Resize : public AbstractTraceEntry { class in namespace:BFSInodeTracing
104 Resize(Inode* inode, off_t oldSize, off_t newSize, bool trim) function in class:BFSInodeTracing::Resize
117 out.Print("bfs:%s %lld (%p), %lld -> %lld", fTrim ? "Trim" : "Resize",
2280 T(Resize(this, oldSize, size, false));
2337 T(Resize(this, max_c(Node().data.MaxDirectRange(),
H A Dkernel_interface.cpp787 return resizer.Resize(size, -1);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dkernel_interface.cpp255 status_t status = inode->Resize(transaction, 0);
650 status_t status = inode->Resize(transaction, stat->st_size);
1182 status_t status = inode->Resize(transaction, 0);
H A DDirectoryIterator.cpp301 status = fDirectory->Resize(transaction, fNumBlocks * fBlockSize);
H A DInode.cpp288 status_t status = Resize(transaction, end);
356 Inode::Resize(Transaction& transaction, off_t size) function in class:Inode
358 TRACE("Inode::Resize() ID:%" B_PRIdINO " size: %" B_PRIdOFF "\n", ID(),
368 TRACE("Inode::Resize(): old size: %" B_PRIdOFF ", new size: %" B_PRIdOFF
381 TRACE("Inode::Resize(): Updating file map and cache\n");
389 TRACE("Inode::Resize(): Writing back inode changes. Size: %" B_PRIdOFF
402 status_t status = Resize(transaction, blockSize);
558 status = inode->Resize(transaction, 0);
H A DInode.h95 status_t Resize(Transaction& transaction, off_t size);
/haiku/src/apps/magnify/
H A DMagnify.cpp1324 fImageView->Resize((int32)r.Width(), (int32)r.Height());
1973 TOSMagnify::Resize(int32 width, int32 height) function in class:TOSMagnify
/haiku/src/system/kernel/util/
H A DBitmap.cpp26 Resize(bitCount);
44 Bitmap::Resize(size_t bitCount) function in class:BKernel::Bitmap
/haiku/src/add-ons/kernel/busses/virtio/virtio_mmio/
H A DVirtioDevice.cpp100 res = fAllocatedDescs.Resize(fDescCount);
/haiku/headers/private/kernel/util/
H A DBitmap.h30 status_t Resize(size_t bitCount);
H A DOpenHashTable.h335 bool Resize(void* allocation, size_t size, bool force = false, function in class:BOpenHashTable
/haiku/src/system/kernel/cache/
H A Dfile_cache.cpp1266 status_t status = cache->Resize(newSize, VM_PRIORITY_USER);
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DDataContainer.cpp86 // Resize
88 DataContainer::Resize(off_t newSize) function in class:DataContainer
90 // PRINT("DataContainer::Resize(%lld), fSize: %lld\n", newSize, fSize);
98 error = fCache->Resize(newSize, VM_PRIORITY_SYSTEM);
109 fCache->Resize(newSize, VM_PRIORITY_SYSTEM);
128 // PRINT("DataContainer::Resize() done: %lx, fSize: %lld\n", error, fSize);
183 error = Resize(offset + size);
H A DDataContainer.h25 status_t Resize(off_t newSize);
H A DAttribute.cpp63 error = DataContainer::Resize(newSize);
/haiku/src/system/kernel/slab/
H A DMemoryManager.cpp441 sAreaTable.Resize(sAreaTableBuffer, sizeof(sAreaTableBuffer), true);
/haiku/src/kits/storage/disk_device/
H A DPartition.cpp844 BPartition::Resize(off_t size) function in class:BPartition
865 error = fDelegate->Resize(contentSize);
875 error = fDelegate->Resize(contentSize);
/haiku/headers/private/storage/
H A DPartition.h107 status_t Resize(off_t size);
/haiku/src/system/kernel/disk_device_manager/
H A DKPartitioningSystem.cpp149 // Resize
152 KPartitioningSystem::Resize(KPartition* partition, off_t size, disk_job_id job) function in class:KPartitioningSystem
/haiku/src/tests/system/kernel/util/
H A DBitmapTest.cpp20 suite->addTest(new CppUnit::TestCaller<BitmapTest>("Bitmap::Resize test",
38 bitmap.Resize(20);
44 bitmap.Resize(200);
79 bitmap.Resize(200);
/haiku/headers/private/kernel/vm/
H A DVMCache.h133 virtual status_t Resize(off_t newSize, int priority);

Completed in 408 milliseconds

12