Home
last modified time | relevance | path

Searched refs:free_chunks_total_words (Results 1 – 25 of 25) sorted by relevance

/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/memory/metaspace/
H A DchunkManager.hpp133 size_t free_chunks_total_words() const { return _free_chunks_total; } in free_chunks_total_words() function in metaspace::ChunkManager
134 size_t free_chunks_total_bytes() const { return free_chunks_total_words() * BytesPerWord; } in free_chunks_total_bytes()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/memory/metaspace/
H A DchunkManager.hpp133 size_t free_chunks_total_words() const { return _free_chunks_total; } in free_chunks_total_words() function in metaspace::ChunkManager
134 size_t free_chunks_total_bytes() const { return free_chunks_total_words() * BytesPerWord; } in free_chunks_total_bytes()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/memory/metaspace/
H A DchunkManager.hpp133 size_t free_chunks_total_words() const { return _free_chunks_total; } in free_chunks_total_words() function in metaspace::ChunkManager
134 size_t free_chunks_total_bytes() const { return free_chunks_total_words() * BytesPerWord; } in free_chunks_total_bytes()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/memory/
H A Dmetaspace.cpp438 size_t MetaspaceUtils::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceUtils
444 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
448 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
451 size_t MetaspaceUtils::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceUtils
452 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
453 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
457 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
611 …print_human_readable_size(out, Metaspace::chunk_manager_class()->free_chunks_total_words(), scale); in print_basic_report()
614 print_human_readable_size(out, Metaspace::chunk_manager_class()->free_chunks_total_words() + in print_basic_report()
615 … Metaspace::chunk_manager_metadata()->free_chunks_total_words(), scale); in print_basic_report()
[all …]
H A Dmetaspace.hpp328 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
347 static size_t free_chunks_total_words();
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/memory/
H A Dmetaspace.cpp439 size_t MetaspaceUtils::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceUtils
444 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
448 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
451 size_t MetaspaceUtils::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceUtils
452 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
453 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
457 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
829 Metaspace::chunk_manager_metadata()->free_chunks_total_words() + in print_report()
830 …(Metaspace::using_class_space() ? Metaspace::chunk_manager_class()->free_chunks_total_words() : 0); in print_report()
H A Dmetaspace.hpp339 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
352 static size_t free_chunks_total_words();
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/memory/
H A Dmetaspace.cpp439 size_t MetaspaceUtils::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceUtils
444 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
448 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
451 size_t MetaspaceUtils::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceUtils
452 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
453 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
457 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
829 Metaspace::chunk_manager_metadata()->free_chunks_total_words() + in print_report()
830 …(Metaspace::using_class_space() ? Metaspace::chunk_manager_class()->free_chunks_total_words() : 0); in print_report()
H A Dmetaspace.hpp330 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
343 static size_t free_chunks_total_words();
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/memory/
H A Dmetaspace.cpp440 size_t MetaspaceUtils::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceUtils
445 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
449 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
452 size_t MetaspaceUtils::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceUtils
453 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
454 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
458 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
803 Metaspace::chunk_manager_metadata()->free_chunks_total_words() + in print_report()
804 …(Metaspace::using_class_space() ? Metaspace::chunk_manager_class()->free_chunks_total_words() : 0); in print_report()
H A Dmetaspace.hpp331 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
344 static size_t free_chunks_total_words();
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/memory/
H A Dmetaspace.cpp438 size_t MetaspaceUtils::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceUtils
444 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
448 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
451 size_t MetaspaceUtils::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceUtils
452 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
453 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
457 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
811 Metaspace::chunk_manager_metadata()->free_chunks_total_words() + in print_report()
812 …(Metaspace::using_class_space() ? Metaspace::chunk_manager_class()->free_chunks_total_words() : 0); in print_report()
H A Dmetaspace.hpp335 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
354 static size_t free_chunks_total_words();
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/memory/
H A Dmetaspace.cpp438 size_t MetaspaceUtils::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceUtils
444 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
448 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
451 size_t MetaspaceUtils::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceUtils
452 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
453 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
457 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
811 Metaspace::chunk_manager_metadata()->free_chunks_total_words() + in print_report()
812 …(Metaspace::using_class_space() ? Metaspace::chunk_manager_class()->free_chunks_total_words() : 0); in print_report()
H A Dmetaspace.hpp335 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
354 static size_t free_chunks_total_words();
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/memory/
H A Dmetaspace.hpp283 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
320 static size_t free_chunks_total_words();
H A Dmetaspace.cpp168 size_t free_chunks_total_words();
1701 size_t ChunkManager::free_chunks_total_words() { in free_chunks_total_words() function in ChunkManager
1706 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
2751 size_t MetaspaceAux::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceAux
2757 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
2761 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
2764 size_t MetaspaceAux::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceAux
2765 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
2766 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
2770 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/memory/
H A Dmetaspace.hpp283 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
320 static size_t free_chunks_total_words();
H A Dmetaspace.cpp168 size_t free_chunks_total_words();
1701 size_t ChunkManager::free_chunks_total_words() { in free_chunks_total_words() function in ChunkManager
1706 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
2751 size_t MetaspaceAux::free_chunks_total_words(Metaspace::MetadataType mdtype) { in free_chunks_total_words() function in MetaspaceAux
2757 return chunk_manager->free_chunks_total_words(); in free_chunks_total_words()
2761 return free_chunks_total_words(mdtype) * BytesPerWord; in free_chunks_total_bytes()
2764 size_t MetaspaceAux::free_chunks_total_words() { in free_chunks_total_words() function in MetaspaceAux
2765 return free_chunks_total_words(Metaspace::ClassType) + in free_chunks_total_words()
2766 free_chunks_total_words(Metaspace::NonClassType); in free_chunks_total_words()
2770 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/memory/metaspace/
H A DchunkManager.hpp150 size_t free_chunks_total_words();
H A DchunkManager.cpp192 size_t ChunkManager::free_chunks_total_words() { in free_chunks_total_words() function in metaspace::ChunkManager
197 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/memory/metaspace/
H A DchunkManager.hpp150 size_t free_chunks_total_words();
H A DchunkManager.cpp192 size_t ChunkManager::free_chunks_total_words() { in free_chunks_total_words() function in metaspace::ChunkManager
197 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/memory/metaspace/
H A DchunkManager.hpp150 size_t free_chunks_total_words();
H A DchunkManager.cpp192 size_t ChunkManager::free_chunks_total_words() { in free_chunks_total_words() function in metaspace::ChunkManager
197 return free_chunks_total_words() * BytesPerWord; in free_chunks_total_bytes()