Searched refs:byte_size (Results 1 - 25 of 54) sorted by relevance

123

/openjdk10/hotspot/src/share/vm/utilities/
H A DgrowableArray.cpp50 size_t byte_size = elementSize * (size_t) _max; local
52 return (void*)resource_allocate_bytes(byte_size);
54 return (void*)AllocateHeap(byte_size, _memflags);
56 return _arena->Amalloc(byte_size);
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DasPSOldGen.cpp77 assert(_reserved.byte_size() <= gen_size_limit(), "Consistency check");
112 if (working_or_min > reserved().byte_size()) {
119 reserved().byte_size() - working_or_min;
135 log.trace(" reserved().byte_size() " SIZE_FORMAT " K / " SIZE_FORMAT_HEX, reserved().byte_size()/K, reserved().byte_size());
H A DpsPromotionLAB.hpp88 size_t capacity() const { return byte_size(bottom(), end()); }
89 size_t used() const { return byte_size(bottom(), top()); }
90 size_t free() const { return byte_size(top(), end()); }
H A DasPSOldGen.hpp50 size_t max_gen_size() { return _reserved.byte_size(); }
H A DobjectStartArray.cpp97 size_t current_blocks_size_in_bytes = _blocks_region.byte_size();
118 assert(requested_blocks_size_in_bytes == _blocks_region.byte_size(), "Sanity");
120 assert(block_for_addr(high_bound-1) <= &_raw_base[_blocks_region.byte_size()-1], "Checking end of map");
124 memset(_blocks_region.start(), clean_block, _blocks_region.byte_size());
H A DpsYoungGen.hpp149 size_t max_size() const { return _reserved.byte_size(); }
/openjdk10/hotspot/src/share/vm/oops/
H A Dsymbol.hpp122 static int byte_size(int length) { function in class:Symbol
128 return (int)heap_word_size(byte_size(length));
148 int byte_size() { return byte_size(utf8_length()); } function in class:Symbol
/openjdk10/hotspot/src/os_cpu/linux_aarch64/vm/
H A Datomic_linux_aarch64.hpp50 template<size_t byte_size>
52 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
93 template<size_t byte_size>
95 inline T Atomic::PlatformCmpxchg<byte_size>::operator()(T exchange_value,
99 STATIC_ASSERT(byte_size == sizeof(T));
/openjdk10/hotspot/test/native/metaprogramming/
H A Dtest_primitiveConversions.cpp34 template<size_t byte_size> struct SignedTypeOfSize;
35 template<size_t byte_size> struct UnsignedTypeOfSize;
/openjdk10/hotspot/src/share/vm/services/
H A DpsMemoryPool.hpp49 size_t max_size() const { return _old_gen->reserved().byte_size(); }
H A DpsMemoryPool.cpp41 old_gen->reserved().byte_size(), support_usage_threshold), _old_gen(old_gen) {
/openjdk10/hotspot/src/os_cpu/linux_sparc/vm/
H A Datomic_linux_sparc.hpp54 template<size_t byte_size>
56 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/share/vm/memory/
H A DmetaspaceShared.hpp227 size_t byte_size = Array<T>::byte_sizeof(length, sizeof(T)); local
228 Array<T>* array = (Array<T>*)read_only_space_alloc(byte_size);
H A DmemRegion.hpp93 size_t byte_size() const { return _word_size * sizeof(HeapWord); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/hotspot/src/share/vm/gc/serial/
H A DtenuredGeneration.cpp199 size_t byte_size = word_size * HeapWordSize; local
201 expand(byte_size, _min_heap_delta_bytes);
210 if (_virtual_space.uncommitted_size() < byte_size) {
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CardCounts.cpp79 _reserved_max_card_num = mapper->reserved().byte_size();
/openjdk10/hotspot/src/share/vm/gc/shared/
H A Dspace.hpp162 size_t capacity() const { return byte_size(bottom(), end()); }
560 size_t capacity() const { return byte_size(bottom(), end()); }
561 size_t used() const { return byte_size(bottom(), top()); }
562 size_t free() const { return byte_size(top(), end()); }
/openjdk10/hotspot/src/os_cpu/linux_ppc/vm/
H A Datomic_linux_ppc.hpp96 template<size_t byte_size>
98 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/linux_zero/vm/
H A Datomic_linux_zero.hpp170 template<size_t byte_size>
172 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/solaris_x86/vm/
H A Datomic_solaris_x86.hpp65 template<size_t byte_size>
67 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Datomic_bsd_x86.hpp43 template<size_t byte_size>
45 : Atomic::FetchAndAdd<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/bsd_zero/vm/
H A Datomic_bsd_zero.hpp176 template<size_t byte_size>
178 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/aix_ppc/vm/
H A Datomic_aix_ppc.hpp98 template<size_t byte_size>
100 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/linux_arm/vm/
H A Datomic_linux_arm.hpp94 template<size_t byte_size>
96 : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Datomic_linux_x86.hpp43 template<size_t byte_size>
45 : Atomic::FetchAndAdd<Atomic::PlatformAdd<byte_size> >

Completed in 121 milliseconds

123