Searched defs:size (Results 301 - 325 of 1126) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/utilities/
H A Dsizes.hpp52 // These classes should help doing a transition from (currently) word-size based offsets
53 // to byte-size based offsets in the VM (this will be important if we desire to pack
68 ByteSize(int size) { _size = size; } argument
72 inline friend ByteSize in_ByteSize(int size);
91 inline ByteSize in_ByteSize(int size) { return ByteSize(size); } argument
100 WordSize(int size) { _size = size; } argument
104 inline friend WordSize in_WordSize(int size);
123 in_WordSize(int size) argument
138 in_ByteSize(int size) argument
142 in_WordSize(int size) argument
[all...]
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DMimeTypeParameterList.java186 public int size() { method in class:MimeTypeParameterList
187 return parameters.size();
244 buffer.ensureCapacity(parameters.size() * 16);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DPrimitiveArrayListerBoolean.java78 int size; field in class:PrimitiveArrayListerBoolean.BooleanArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 boolean[] r = new boolean[size];
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerByte.java78 int size; field in class:PrimitiveArrayListerByte.ByteArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 byte[] r = new byte[size];
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerCharacter.java78 int size; field in class:PrimitiveArrayListerCharacter.CharacterArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 char[] r = new char[size];
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerDouble.java78 int size; field in class:PrimitiveArrayListerDouble.DoubleArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 double[] r = new double[size];
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerFloat.java78 int size; field in class:PrimitiveArrayListerFloat.FloatArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 float[] r = new float[size];
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerInteger.java78 int size; field in class:PrimitiveArrayListerInteger.IntegerArrayPack
81 if(buf.length==size) {
88 buf[size++] = b;
92 if(buf.length==size)
96 int[] r = new int[size];
97 System.arraycopy(buf,0,r,0,size);
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/dtdparser/
H A DSimpleHashtable.java115 public int size() { method in class:SimpleHashtable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DQualifiedName.java295 public final void createAttributeValues(int size) { argument
297 attributeHash = localNameIndex % size;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventReader.java46 private int size = 3; field in class:StAXEventReader
85 if (++currentIndex==size)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DParameterList.java119 public int size() { method in class:ParameterList
120 return list.size();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DEndpointMessageContextImpl.java174 public int size() { method in class:EndpointMessageContextImpl.EntrySet
175 return createBackupMap().size();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapterList.java106 public int size() { method in class:HttpAdapterList
107 return adapters.size();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java61 public int size() { method in class:DeferedCollection
63 return archive.size();
90 if(idx<archive.size())
96 if(idx==archive.size())
98 if(idx==archive.size())
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_f.c30 * mlib_v_ImageCopy_a1 - 1-D, Aligned8, size 8x
40 * size size in 8-bytes, bytes, or SHORTs
67 * 8-byte aligned. And size is in 8-bytes.
72 mlib_s32 size)
77 for (i = 0; i < size; i++) {
122 mlib_s32 size,
131 mlib_s32 b_size; /* size in bytes */
135 if (size <- 0) return;
137 if (size < (
70 mlib_v_ImageCopy_a1(mlib_d64 *sp, mlib_d64 *dp, mlib_s32 size) argument
120 mlib_ImageCopy_bit_al(const mlib_u8 *sa, mlib_u8 *da, mlib_s32 size, mlib_s32 offset) argument
202 mlib_ImageCopy_na(const mlib_u8 *sa, mlib_u8 *da, mlib_s32 size) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c97 jlong pos, jlong size, jboolean shared, jlong ov)
103 DWORD lowNumBytes = (DWORD)size;
104 DWORD highNumBytes = (DWORD)(size >> 32);
96 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_lockFile(JNIEnv *env, jobject this, jlong handle, jlong pos, jlong size, jboolean shared, jlong ov) argument
/openjdk7/jdk/src/windows/native/sun/tools/attach/
H A DWindowsAttachProvider.c109 DWORD size, bytesReturned; local
113 size = max * sizeof(DWORD);
114 ptr = (DWORD*)malloc(size);
116 BOOL res = EnumProcesses(ptr, size, &bytesReturned);
138 DWORD size, bytesReturned; local
158 size = 1024 * sizeof(HMODULE);
159 ptr = (HMODULE*)malloc(size);
161 BOOL res = EnumProcessModules(hProcess, ptr, size, &bytesReturned);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DHashtable.h47 HashtableEnumerator(HashtableEntry* table[], int size, BOOL keys);
65 * The size of table
113 INLINE int size() { function in class:Hashtable
180 * size exceeds the threshold.
H A Dawt_TextComponent.h67 INLINE virtual int GetText(LPTSTR buffer, int size) { argument
68 return ::GetWindowText(GetHWnd(), buffer, size);
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java92 if (sinkChannel.size() != 10)
93 throw new RuntimeException("Unexpected sink size");
98 throw new RuntimeException("Wrote past file size");
107 private static void testReadableByteChannel(int size) throws Exception { argument
114 ByteBuffer outgoingdata = ByteBuffer.allocateDirect(size + 10);
115 byte[] someBytes = new byte[size + 10];
121 while (totalWritten < size + 10) {
128 File f = File.createTempFile("blah"+size, null);
134 long bytesWritten = fc.transferFrom(source, 0, size);
136 if (bytesWritten != size)
533 initTestFile(File blah, long size) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTodo.java72 public int size() { method in class:Todo
73 return contents.size();
87 if (size() == 0)
96 return (size() == 0 ? null : contents.get(0));
146 public int size() { method in class:Todo.FileQueue
147 return fileContents.size();
159 if (fileContents.size() == 0)
167 return (fileContents.size() == 0 ? null : fileContents.get(0));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DByteBuffer.java56 * of given size.
63 private void copy(int size) { argument
64 byte[] newelems = new byte[size];

Completed in 345 milliseconds

<<11121314151617181920>>