Searched refs:size (Results 251 - 275 of 3453) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DPrimitiveArrayListerLong.java78 int size; field in class:PrimitiveArrayListerLong.LongArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 long[] r = new long[size];
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerShort.java78 int size; field in class:PrimitiveArrayListerShort.ShortArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 short[] r = new short[size];
97 System.arraycopy(buf,0,r,0,size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DASCIIUtility.java116 int size = end - start;
117 char[] theChars = new char[size];
119 for (int i = 0, j = start; i < size; )
127 int size = chars.length;
128 byte[] bytes = new byte[size];
130 for (int i = 0; i < size;)
139 * buffer reallocation just to get the array of an exact size.
140 * Unless you absolutely need the exact size array, don't use this.
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DSize.java26 * @summary Test size method of FileChannel
37 * Testing FileChannel's size method.
59 if (c.size() != testSize)
78 fc.size();
80 if (fc.size() != testSize + 10)
81 throw new RuntimeException("Size failed " + fc.size());
89 * Creates file blah of specified size in bytes.
92 private static void initTestFile(File blah, long size) throws Exception { argument
99 for(int i=0; i<size; i++) {
H A DTryLock.java64 fl = fc.tryLock(0, fc.size(), shared);
66 fl = fc.lock(0, fc.size(), shared);
87 fl = fc.tryLock(0, fc.size(), shared);
89 fl = fc.lock(0, fc.size(), shared);
110 fl = fc.tryLock(0, fc.size(), shared);
112 fl = fc.lock(0, fc.size(), shared);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dutils.cpp49 void* must_malloc(size_t size) { argument
50 size_t msize = size;
57 memset(ptr, 0, size);
61 mtrace('m', ptr, size);
116 void mtrace(char c, void* ptr, size_t size) { argument
131 fprintf(mtfp, "%c %p %p\n", c, ptr, (void*)size);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_sys.c85 void *__mlib_malloc(mlib_u32 size) argument
92 return (void *) malloc(size);
94 return valloc(size);
96 return (void *) memalign(8, size);
100 void *__mlib_realloc(void *ptr, mlib_u32 size) argument
102 return realloc(ptr, size);
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DModifyCorePoolSize.java27 * @summary Test changes to STPE core pool size
46 final int size = 10;
48 = new ScheduledThreadPoolExecutor(size);
51 for (int i = 0; i < size; i++)
54 awaitPoolSize(pool, size);
55 setCorePoolSize(pool, size - 3);
56 setCorePoolSize(pool, size + 3);
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp212 if (offset >= size()) {
213 resize(2 * MAX2(size(), offset));
278 assert(size() == other.size(), "must have same size");
281 idx_t size = size_in_words(); local
292 assert(size() == other.size(), "must have same size");
295 idx_t size local
307 idx_t size = size_in_words(); local
318 idx_t size = size_in_words(); local
329 idx_t size = size_in_words(); local
345 idx_t size = size_in_words(); local
356 idx_t size = size_in_words(); local
371 idx_t size = size_in_words(); local
386 idx_t size = size_in_words(); local
401 idx_t size = size_in_words(); local
412 idx_t size = size_in_words(); local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_NN.c63 mlib_s32 i, size; local
72 size = xRight - xLeft + 1;
74 while (((mlib_s32)dp & 3) && (size > 0)) {
79 size--;
84 for (i = 0; i <= (size - 4); i += 4) {
113 for (i = 0; i <= (size - 4); i += 4) {
136 for (i = 0; i < (size & 3); i++) {
175 mlib_s32 i, size; local
184 size = xRight - xLeft + 1;
189 for (i = 0; i <= (size
252 mlib_s32 i, size; local
353 mlib_s32 i, size; local
418 mlib_s32 i, size; local
501 mlib_s32 i, size; local
589 mlib_s32 i, size, max_xsize = param -> max_xsize; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DTokenBuffer.java55 TokenBuffer (int size) throws Exception argument
57 _size = size; // _size == 0 is legal, but useless and problematic
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DCallDecoder.java35 int size = byteIndex - instrStartIndex;
42 return factory.newCallInstruction(name, address, size, prefixes);
H A DFPInstructionDecoder.java44 int size = byteIndex - instrStartIndex;
45 return new X86FPInstruction(name, op1, size, prefixes);
H A DJmpDecoder.java35 int size = byteIndex - instrStartIndex;
42 return factory.newJmpInstruction(name, address, size, prefixes);
H A DX86FPLoadInstruction.java33 public X86FPLoadInstruction(String name, Operand operand, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86FPStoreInstruction.java33 public X86FPStoreInstruction(String name, Operand op, int size, int prefixes) { argument
34 super(name, size, prefixes);
/openjdk7/hotspot/agent/src/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);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DSharedObject.java34 SharedObject(LinuxDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk7/hotspot/agent/src/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;
/openjdk7/hotspot/agent/src/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);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DMaskFillerForNative.java37 this.size = maskSize;
54 private int size; field in class:MaskFillerForNative
/openjdk7/jdk/src/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
/openjdk7/jdk/src/share/classes/java/nio/
H A DDirect-X-Buffer-bin.java.template90 int size = rem >> $LG_BYTES_PER_VALUE$;
96 size,
97 size,
102 size,
103 size,
110 size,
111 size,
116 size,
117 size,
/openjdk7/jdk/src/share/classes/java/util/
H A DTimer.java460 for (int i = queue.size(); i > 0; i--) {
582 * queue[1] up to queue[size]).
584 private int size = 0; field in class:TaskQueue
589 int size() { method in class:TaskQueue
590 return size;
598 if (size + 1 == queue.length)
601 queue[++size] = task;
602 fixUp(size);
626 queue[1] = queue[size];
627 queue[size
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipEntry.java40 long size = -1; // uncompressed size of entry data field in class:ZipEntry
41 long csize = -1; // compressed size of entry data
84 size = e.size;
125 * Sets the uncompressed size of the entry data.
126 * @param size the uncompressed size in bytes
127 * @exception IllegalArgumentException if the specified size is less
133 public void setSize(long size) { argument
[all...]

Completed in 102 milliseconds

<<11121314151617181920>>