Searched refs:size (Results 351 - 375 of 5301) sorted by relevance

<<11121314151617181920>>

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java38 private long size; field in class:DSO
59 public DSO(String filename, long size, Address relocation) throws ELFException { argument
61 this.size = size;
66 public DSO(long size, Address relocation) throws ELFException { argument
68 this.size = size;
92 return size;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DSharedObject.java34 SharedObject(ProcDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DSharedObject.java34 SharedObject(BsdDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk10/hotspot/src/share/vm/memory/
H A DmemRegion.hpp97 void* operator new(size_t size) throw();
98 void* operator new [](size_t size) throw();
114 void* operator new(size_t size, ResourceObj::allocation_type type, MEMFLAGS flags) throw() { argument
115 return ResourceObj::operator new(size, type, flags);
117 void* operator new(size_t size, Arena *arena) throw() { argument
118 return ResourceObj::operator new(size, arena);
120 void* operator new(size_t size) throw() { argument
121 return ResourceObj::operator new(size);
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DparallelScavengeHeap.inline.hpp38 inline bool ParallelScavengeHeap::should_alloc_in_eden(const size_t size) const {
40 return size < eden_size / 2;
/openjdk10/hotspot/test/runtime/memory/LargePages/
H A DTestLargePageSizeInBytes.java53 private static void testLargePageSizeInBytes(long size) throws Exception { argument
56 "-XX:LargePageSizeInBytes=" + size,
/openjdk10/hotspot/test/runtime/NMT/
H A DMallocStressTest.java157 private int size; field in class:MallocStressTest.MallocMemory
159 MallocMemory(long addr, int size) { argument
161 this.size = size;
165 int size() { return this.size; } method in class:MallocStressTest.MallocMemory
180 int size = r % 32;
186 if (size == 0) size = 1;
187 long addr = MallocStressTest.whiteBox.NMTMallocWithPseudoStack(size,
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64DecoderStream.java48 private int bufsize = 0; // size of the cache
215 int size = (inbuf.length / 4) * 3;
216 if (size == 0)
220 size--;
222 size--;
224 byte[] outbuf = new byte[size];
227 size = inbuf.length;
228 while (size > 0) {
248 size -= 4;
/openjdk10/jdk/src/java.base/share/native/libjli/
H A Dsplashscreen.h27 int DoSplashLoadMemory(void* pdata, int size); /* requires preloading the file */
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DSoftSincResampler.java61 public static float[] wHanning(int size, float offset) { argument
62 float[] window_table = new float[size];
63 for (int k = 0; k < size; k++) {
66 / (double) size) + 0.5);
72 public static float[] sincTable(int size, float offset, float scale) { argument
73 int center = size / 2;
74 float[] w = wHanning(size, offset);
75 for (int k = 0; k < size; k++)
H A DEventDispatcher.java166 if (eventQueue.size() == 0) {
167 if (autoClosingClips.size() > 0 || lineMonitors.size() > 0) {
169 if (lineMonitors.size() > 0) {
179 if (eventQueue.size() > 0) {
188 if (autoClosingClips.size() > 0) {
191 if (lineMonitors.size() > 0) {
225 || (listeners.size() == 0)) {
244 if (Printer.debug)Printer.debug("> EventDispatcher.closeAutoClosingClips ("+autoClosingClips.size()+" clips)");
246 for (int i = autoClosingClips.size()
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DDropShadowEffect.java81 // clac expanded size
82 int tmpOffX = offsetX + size;
83 int tmpOffY = offsetX + size;
84 int tmpW = w + offsetX + size + size;
85 int tmpH = h + offsetX + size;
103 float[] kernel = EffectUtils.createGaussianKernel(size);
104 EffectUtils.blur(tmpBuf1, tmpBuf2, tmpW, tmpH, kernel, size); // horizontal pass
105 EffectUtils.blur(tmpBuf2, tmpBuf1, tmpH, tmpW, kernel, size);// vertical pass
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DTimer.java461 for (int i = queue.size(); i > 0; i--) {
583 * queue[1] up to queue[size]).
585 private int size = 0; field in class:TaskQueue
590 int size() { method in class:TaskQueue
591 return size;
599 if (size + 1 == queue.length)
602 queue[++size] = task;
603 fixUp(size);
627 queue[1] = queue[size];
628 queue[size
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A DmallocTracker.cpp40 amount += _tracking_header.size() + total_arena();
54 // from total chunks to get total free chunk size
72 MallocMemorySummary::record_free(size(), flags());
75 MallocSiteTable::deallocation_at(size(), _bucket_idx, _pos_idx);
79 bool MallocHeader::record_malloc_site(const NativeCallStack& stack, size_t size, argument
81 bool ret = MallocSiteTable::allocation_at(stack, size, bucket_idx, pos_idx, flags);
120 void* MallocTracker::record_malloc(void* malloc_base, size_t size, MEMFLAGS flags, argument
135 header = ::new (malloc_base)MallocHeader(size, flags, stack, level);
145 assert(get_size(memblock) == size, "Wrong size");
[all...]
/openjdk10/jdk/src/java.desktop/windows/native/libjsound/
H A DPLATFORM_API_WinOS_Util.h51 int size; // data size per sys ex header member in struct:tag_SysExQueue
53 UBYTE* linearMem; // where the actual sys ex data is, count*size bytes
65 int MIDI_WinCreateLongBufferQueue(MidiDeviceHandle* handle, int count, int size, UBYTE* preAllocatedMem);
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DMethodSet.java73 public int size() { method in class:MethodSet
103 int size = methodList.size();
104 for (int i = 0; i < size; i++) {
142 int size = methodList.size();
143 for (int i = 0; i < size; i++) {
262 int len = size();
/openjdk10/jdk/test/java/awt/Choice/ChoiceHiDpi/
H A DChoiceTest.java48 int size = font.getSize();
51 if (height < size) {
/openjdk10/jdk/src/jdk.naming.rmi/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContextFactory.java152 int size = 0; // number of URLs
153 String[] urls = new String[ref.size()];
162 urls[size++] = (String)addr.getContent();
165 if (size == 0) {
170 // Trim URL array down to size.
171 if (size == ref.size()) {
174 String[] urls2 = new String[size];
175 System.arraycopy(urls, 0, urls2, 0, size);
/openjdk10/jdk/test/java/lang/instrument/
H A DGetObjectSizeTest.java80 long size = fInst.getObjectSize(o);
81 assertTrue(size > 0);
/openjdk10/jdk/test/java/security/cert/X509Certificate/
H A DExtKeyUsage.java43 if (extKeyUsage.size() != 1)
45 "unexpected number of entries: "+extKeyUsage.size());
/openjdk10/jdk/test/sun/nio/cs/
H A DEncodingNothing.java44 if (baos.size() != 0) {
45 System.out.printf(" Failed: output bytes=%d", baos.size());
/openjdk10/jdk/test/jdk/internal/misc/Unsafe/
H A DCopyCommon.java71 * @param elemSize size (in bytes) of the element
90 default: throw new IllegalArgumentException("Invalid element size: " + elemSize);
102 * @param size size (in bytes) of data to to verify
103 * @param elemSize size (in bytes) of the individual array elements
107 private void verifySwappedData(GenericPointer ptr, long srcOffset, long dstOffset, long size, long elemSize) { argument
108 for (long offset = 0; offset < size; offset += elemSize) {
117 " size: 0x" + Long.toHexString(size) +
130 * @param size siz
133 initVerificationData(GenericPointer ptr, long size, long elemSize) argument
153 allocArray(long size, long elemSize) argument
241 byteSwap(long value, long size) argument
259 verifyUnswappedData(GenericPointer ptr, long startOffset, long srcOffset, long size) argument
411 testBufferPair(GenericPointer src, GenericPointer dst, long size, long elemSize, boolean swap) argument
449 testPermuteBuffers(GenericPointer[] buffers, long size, long elemSize, boolean swap) argument
466 testElemSize(long size, long elemSize, boolean swap) argument
[all...]
/openjdk10/jdk/test/sun/java2d/marlin/
H A DCrashTest.java118 // size > 8192 (exceed both tile and buckets arrays)
119 final int size = 9000;
120 System.out.println("image size = " + size);
122 final BufferedImage image = new BufferedImage(size, size, BufferedImage.TYPE_INT_ARGB);
129 g2d.setClip(0, 0, size, size);
131 g2d.clearRect(0, 0, size, size);
216 paint(final Graphics2D g2d, final float size) argument
[all...]
/openjdk10/langtools/test/tools/javac/TryWithResources/
H A DDuplicateResource.java57 if (resources.size() != 1) {
58 throw new AssertionError("Expected one resource, found: " + resources.size());
/openjdk10/nashorn/samples/dynalink/
H A Dmissing_method.js42 print(obj.size())

Completed in 313 milliseconds

<<11121314151617181920>>