Searched defs:size (Results 76 - 100 of 1126) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DDataBufferNIOInt.java41 * and the specified size.
43 * @param size The size of the <CODE>DataBuffer</CODE>.
45 public DataBufferNIOInt(int size) { argument
46 super(TYPE_INT,size);
48 data = getBufferOfSize(size * 4).asIntBuffer();
151 ByteBuffer getBufferOfSize(int size) argument
153 ByteBuffer buffer = ByteBuffer.allocateDirect(size);
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.cpp57 void ResourceArray::expand(size_t esize, int i, int& size) { argument
63 // determine new size
64 if (size == 0) size = 4; // prevent endless loop
65 while (i >= size) size *= 2;
67 void* data = resource_allocate_bytes(esize * size);
73 template <MEMFLAGS F> void CHeapArray<F>::expand(size_t esize, int i, int& size) { argument
74 // determine new size
75 if (size
[all...]
/openjdk7/hotspot/test/compiler/6724218/
H A DTest.java36 static int size = 0; field in class:Test
44 size -= 1;
57 if (size == 0) {
69 size += 1;
77 } else if (size > 0) {
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLBaseFontElement.java65 * Font size. See the size attribute definition in HTML 4.0. This
69 public void setSize(String size); argument
H A DHTMLFontElement.java65 * Font size. See the size attribute definition in HTML 4.0. This
69 public void setSize(String size); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJArray.java38 private final JExpression size; field in class:JArray
51 JArray(JType type, JExpression size) { argument
53 this.size = size;
69 if (size != null)
70 f.g(size);
76 if ((size == null) || (exprs != null))
83 if ((size == null) || (exprs != null))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DByteArrayOutputStreamEx.java41 public ByteArrayOutputStreamEx(int size) { argument
42 super(size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DCharWriter.java37 public CharWriter(int size) { argument
38 super(size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DData.java37 * size of the chunk given by the parser
39 * @return size of the chunk
41 int size(); method in interface:Data
47 * @return a byte array which contains {#size()} bytes. The returned
48 * array may be larger than {#size()} bytes and contains data
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DByteArrayOutputStreamEx.java41 public ByteArrayOutputStreamEx(int size) { argument
42 super(size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DParameterList.java103 int size() { method in class:ParameterList
104 return list.size();
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Font.h32 jfieldID size; member in struct:FontIDs
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy.c41 * src and dst must have the same size, type and number of channels.
55 extern void mlib_v_ImageCopy_blk(mlib_u8 *sa, mlib_u8 *da, mlib_s32 size);
56 extern void mlib_v_ImageCopy_a1(mlib_d64 *sp, mlib_d64 *dp, mlib_s32 size);
57 extern void mlib_ImageCopy_na(mlib_u8 *sa, mlib_u8 *da, mlib_s32 size);
59 mlib_s32 size, mlib_s32 offset);
60 extern void mlib_ImageCopy_bit_na(mlib_u8 *sa, mlib_u8 *da, mlib_s32 size,
84 mlib_s32 size; local
102 size = height * (width >> 3);
103 if ((size & 0x3f) == 0 &&
107 mlib_v_ImageCopy_blk(sa, da, size);
[all...]
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
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);
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DRegistryFileTypeDetector.c49 DWORD size = sizeof(data); local
51 res = RegQueryValueExW(hKey, lpValueName, NULL, &type, (LPBYTE)&data, &size);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DSelCacheTest.java92 static void test (boolean fixedLen, String protocol, String root, int port, String f, int size) throws Exception { argument
122 if (count != size) {
H A DTest1.java102 static void test (boolean fixedLen, String protocol, String root, int port, String f, int size) throws Exception { argument
131 if (count != size) {
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DShortWrite.java79 int size)
82 System.out.println(size);
85 ByteBuffer buf = ByteBuffer.allocate(size);
89 Future<Long> result = pool.submit(new Reader(sink, size));
93 if (n != size)
120 for (int size=(BOUNDARY-2); size<=(BOUNDARY+2); size++) {
121 test(pool, source, sink, size);
126 int size
76 test(ExecutorService pool, SocketChannel source, SocketChannel sink, int size) argument
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DBytesAndLines.java88 static void testReadAndWriteBytes(int size) throws IOException { argument
93 byte[] b1 = new byte[size];
96 byte[] b2 = (append) ? new byte[size] : new byte[0];
106 assertTrue(size(path) == b1.length, "Unexpected file size");
110 assertTrue(size(path) == b1.length + b2.length, "Unexpected file size");
140 assertTrue(size(tmpfile) == 0, "File should be empty");
148 assertTrue(lines.size() == 1, "One line expected");
154 assertTrue(size(tmpfil
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttributes.java94 public int size() { method in class:Attributes
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DFilteredMemberList.java54 public int size() { method in class:FilteredMemberList
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tag.c80 jint size, SiteIndex site_index)
87 object_index = object_new(site_index, size, kind, thread_serial_num);
105 jint size; local
110 /* If we don't know the size of a java.lang.Class object, get it */
111 size = gdata->system_class_size;
112 if ( size == 0 ) {
113 size = (jint)getObjectSize(klass);
114 gdata->system_class_size = size;
121 object_index = object_new(site_index, size, OBJECT_CLASS,
79 tag_new_object(jobject object, ObjectKind kind, SerialNumber thread_serial_num, jint size, SiteIndex site_index) argument
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dutils.h28 void* must_malloc(size_t size);
30 #define mtrace(c, ptr, size)
32 void mtrace(char c, void* ptr, size_t size);
37 #define PSIZE_MAX (OVERFLOW/2) /* normal size limit */
39 inline size_t scale_size(size_t size, size_t scale) { argument
40 return (size > PSIZE_MAX / scale) ? OVERFLOW : size * scale;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPOptions.java68 public APOptions(int size, byte[] data) throws Asn1Exception { argument
69 super(size, data);
70 if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.AP_OPTS_MAX + 1)) {
H A DTicketFlags.java69 public TicketFlags(int size, byte[] data) throws Asn1Exception { argument
70 super(size, data);
71 if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.TKT_OPTS_MAX + 1))

Completed in 74 milliseconds

1234567891011>>