Home
last modified time | relevance | path

Searched refs:committed_size (Results 1 – 7 of 7) sorted by relevance

/haiku/src/system/kernel/vm/
H A DVMAnonymousNoSwapCache.cpp37 vm_unreserve_memory(committed_size); in ~VMAnonymousNoSwapCache()
68 if (fCanOvercommit && size > committed_size) { in Commit()
81 if (size > committed_size) { in Commit()
83 if (vm_try_reserve_memory(size - committed_size, priority, 1000000) in Commit()
89 vm_unreserve_memory(committed_size - size); in Commit()
92 committed_size = size; in Commit()
145 if (committed_size / B_PAGE_SIZE > page_count) in Fault()
157 committed_size += B_PAGE_SIZE; in Fault()
179 committed_size += source->committed_size; in MergeStore()
180 source->committed_size = 0; in MergeStore()
[all …]
H A DVMAnonymousCache.cpp452 if (committed_size > fCommittedSwapSize) in ~VMAnonymousCache()
453 vm_unreserve_memory(committed_size - fCommittedSwapSize); in ~VMAnonymousCache()
726 if (fCanOvercommit && size > committed_size) { in Commit()
986 if (committed_size / B_PAGE_SIZE > page_count) in Fault()
1002 committed_size += B_PAGE_SIZE; in Fault()
1025 committed_size += source->committed_size; in Merge()
1026 source->committed_size = 0; in Merge()
1029 if (committed_size > actualSize) in Merge()
1148 "%" B_PRIdOFF " (%" B_PRIdOFF " swap)\n", this, size, committed_size, in _Commit()
1154 off_t committedMemory = committed_size - fCommittedSwapSize; in _Commit()
[all …]
H A Dvm_debug.cpp281 info.committed += cache->committed_size; in update_cache_info_recursively()
327 kprintf(", committed: %" B_PRIdOFF, cache->committed_size); in dump_caches_recursively()
H A DVMCache.cpp151 fOldCommitment(cache->committed_size), in SetMinimalCommitment()
642 committed_size = 0; in Init()
1092 if (committed_size < commitment) { in SetMinimalCommitment()
H A Dvm.cpp1775 cache->committed_size = reservedMemory; in vm_create_anonymous_area()
6333 const off_t newCommitment = topCache->committed_size + commitmentChange; in _user_set_memory_protection()
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DDataContainer.cpp257 info.AddAreaAllocation(fCache->committed_size); in GetAllocationInfo()
/haiku/headers/private/kernel/vm/
H A DVMCache.h197 off_t committed_size; member