Searched refs:Allocator (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A DbitMap.hpp125 template <class Allocator>
126 static bm_word_t* allocate(const Allocator&, idx_t size_in_bits);
129 template <class Allocator>
130 static bm_word_t* reallocate(const Allocator&, bm_word_t* map, idx_t old_size_in_bits, idx_t new_size_in_bits);
133 template <class Allocator>
134 static void free(const Allocator&, bm_word_t* map, idx_t size_in_bits);
142 template <class Allocator>
143 void resize(const Allocator& allocator, idx_t new_size_in_bits);
149 template <class Allocator>
150 void initialize(const Allocator
[all...]
H A DbitMap.cpp74 template <class Allocator>
75 BitMap::bm_word_t* BitMap::reallocate(const Allocator& allocator, bm_word_t* old_map, idx_t old_size_in_bits, idx_t new_size_in_bits) {
99 template <class Allocator>
100 bm_word_t* BitMap::allocate(const Allocator& allocator, idx_t size_in_bits) {
105 template <class Allocator>
106 void BitMap::free(const Allocator& allocator, bm_word_t* map, idx_t size_in_bits) {
111 template <class Allocator>
112 void BitMap::resize(const Allocator& allocator, idx_t new_size_in_bits) {
118 template <class Allocator>
119 void BitMap::initialize(const Allocator
[all...]
/openjdk10/hotspot/test/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java73 static class Allocator implements Runnable { class in class:TestNoAllocationsInHRegions
89 public Allocator(int maxAllocationMemory) { method in class:TestNoAllocationsInHRegions.Allocator
215 threads.add(new Thread(new Allocator(maxMemoryPerAllocThread)));
/openjdk10/jdk/src/java.desktop/share/native/liblcms/
H A Dcmscgats.c176 SUBALLOCATOR Allocator; // String suballocator -- just to keep it fast member in struct:__anon1007
1103 cmsUInt32Number Free = it8 ->Allocator.BlockSize - it8 ->Allocator.Used;
1110 if (it8 -> Allocator.BlockSize == 0)
1112 it8 -> Allocator.BlockSize = 20*1024;
1114 it8 ->Allocator.BlockSize *= 2;
1116 if (it8 ->Allocator.BlockSize < size)
1117 it8 ->Allocator.BlockSize = size;
1119 it8 ->Allocator.Used = 0;
1120 it8 ->Allocator
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DLSStackSlotAllocator.java100 new Allocator(res.getLIR(), builder).allocate();
105 private static final class Allocator { class in class:LSStackSlotAllocator
117 private Allocator(LIR lir, FrameMapBuilderTool frameMapBuilder) { method in class:LSStackSlotAllocator.Allocator
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/bu/
H A DBottomUpAllocator.java183 new Allocator().allocateTrace(trace);
244 private final class Allocator { class in class:BottomUpAllocator
263 private Allocator() { method in class:BottomUpAllocator.Allocator
/openjdk10/hotspot/src/share/vm/prims/
H A Djni.cpp2668 #define DEFINE_NEWSCALARARRAY(Return,Allocator,Result \
2681 oop obj= oopFactory::Allocator(len, CHECK_0); \

Completed in 122 milliseconds