Searched refs:size (Results 126 - 150 of 3453) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DBasicFileAttributes.java110 * Returns the size of the file (in bytes). The size may differ from the
111 * actual size on the file system due to compression, support for sparse
112 * files, or other reasons. The size of files that are not {@link
116 * @return the file size, in bytes
118 long size(); method in interface:BasicFileAttributes
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmParameterGeneratorSpi.java42 * For example, the Sun provider uses a default modulus prime size of 1024
58 * Initializes this parameter generator for a certain size
61 * @param size the size (number of bits).
64 protected abstract void engineInit(int size, SecureRandom random); argument
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractSet.java71 * the same size, and every member of the given set is contained in
78 * specified object is a set whose size is identical to the size of
92 if (c.size() != size())
139 * and the specified collection, by invoking the <tt>size</tt>
171 if (size() > c.size()) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DDisplayMode.java48 private Dimension size; field in class:DisplayMode
66 this.size = new Dimension(width, height);
76 return size.height;
84 return size.width;
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DAbstractSimpleTypeNode.java35 if (components.size() != 0) {
/openjdk7/jdk/src/share/bin/
H A Djli_util.c33 * Returns a pointer to a block of at least 'size' bytes of memory.
37 JLI_MemAlloc(size_t size) argument
39 void *p = malloc(size);
48 * Equivalent to realloc(size).
52 JLI_MemRealloc(void *ptr, size_t size) argument
54 void *p = realloc(ptr, size);
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6186134.java62 int size = t.test1().size();
63 if (size != 10) {
64 System.out.println("wrong size: " + size +", should be 10");
/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/test/com/sun/jndi/ldap/LdapName/
H A DCase.java39 name.size(); // will throw exception if rdns is null
/openjdk7/jdk/test/java/net/Inet4Address/
H A DtextToNumericFormat.java73 if (goodList.size() > 0 || badList.size() > 0) {
74 throw new RuntimeException((goodList.size() > 0?
77 (badList.size() > 0 ?
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DCrc32CksumType.java66 public byte[] calculateChecksum(byte[] data, int size) { argument
67 return crc32.byte2crc32sum_bytes(data, size);
70 public byte[] calculateKeyedChecksum(byte[] data, int size, argument
75 public boolean verifyKeyedChecksum(byte[] data, int size, argument
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileLockImpl.java36 FileLockImpl(FileChannel channel, long position, long size, boolean shared) argument
38 super(channel, position, size, shared);
41 FileLockImpl(AsynchronousFileChannel channel, long position, long size, boolean shared) argument
43 super(channel, position, size, shared);
/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/hotspot/src/share/vm/runtime/
H A Dvirtualspace.cpp45 ReservedSpace::ReservedSpace(size_t size) { argument
46 initialize(size, 0, false, NULL, 0, false);
49 ReservedSpace::ReservedSpace(size_t size, size_t alignment, argument
53 initialize(size+noaccess_prefix, alignment, large, requested_address,
57 ReservedSpace::ReservedSpace(size_t size, size_t alignment, argument
60 initialize(size, alignment, large, NULL, 0, executable);
160 const size_t size,
176 if (!os::release_memory_special(base, size)) {
180 release_memory(base, size);
212 const size_t size local
158 failed_to_reserve_as_requested(char* base, char* requested_address, const size_t size, bool special) argument
284 initialize(size_t size, size_t alignment, bool large, char* requested_address, const size_t noaccess_prefix, bool executable) argument
406 ReservedSpace(char* base, size_t size, size_t alignment, bool special, bool executable) argument
441 page_align_size_up(size_t size) argument
446 page_align_size_down(size_t size) argument
451 allocation_align_size_up(size_t size) argument
456 allocation_align_size_down(size_t size) argument
478 protect_noaccess_prefix(const size_t size) argument
507 ReservedHeapSpace(size_t size, size_t alignment, bool large, char* requested_address) argument
808 shrink_by(size_t size) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferQueue.java49 public int size() method in class:BufferQueue
51 return list.size();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DFPLoadDecoder.java36 int size = byteIndex - instrStartIndex;
37 return factory.newFPLoadInstruction(name, op, size, prefixes);
H A DFPStoreDecoder.java36 int size = byteIndex - instrStartIndex;
37 return factory.newFPStoreInstruction(name, op, size, prefixes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjectHistogramElement.java36 private long size; // Total size of all these instances field in class:ObjectHistogramElement
41 size = 0;
46 size = size + obj.getObjectSize();
50 return (int) (other.size - size);
63 /** Total size of all these instances */
65 return size;
118 tty.print(count + "\t" + size
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPathList.java36 public int size() { method in class:LivenessPathList
37 return list.size();
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSeekableByteChannel.java39 * the current <i>size</i> of the entity to which the channel is connected. The
40 * size increases when bytes are written beyond its current size; the size
99 * <p> Setting the position to a value that is greater than the current size
100 * is legal but does not change the size of the entity. A later attempt to
128 * Returns the current size of entity to which this channel is connected.
130 * @return The current size, measured in bytes
137 long size() throws IOException; method in interface:SeekableByteChannel
141 * size
167 truncate(long size) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpIndex.java66 size= oidList.length;
67 for(int i= 0; i <size; i++) {
81 size= 1;
90 return size;
111 if (size != index.getNbComponents())
120 for(int i=0; i <size; i++) {
143 for(int i=0; i < size; i++) {
189 private int size = 0; field in class:SnmpIndex
/openjdk7/jdk/test/java/awt/FontClass/CreateFont/
H A DBigFont.java43 int size; field in class:BigFont.SizedInputStream
46 SizedInputStream(int size) { argument
47 this.size = size;
51 if (cnt < size) {
76 // Larger than size for a single font.
100 int size = getFileSize(fileName);
101 if (size == 0) {
104 int fontCnt = 1000 * 1000 * 1000 / size;
105 loadMany(size, fontCn
[all...]
/openjdk7/jdk/test/java/io/Serializable/typeStringBackRef/
H A DTypeStringBackRef.java41 if (bout.size() != 116) {
42 throw new Error("Wrong data length: " + bout.size());
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djutils.c104 #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)
105 #define FMEMZERO(target,size) MEMZERO(target,size)
108 #define FMEMCOPY(dest,src,size) _fmemcpy((void FAR *)(dest), (const void FAR *)(src), (size_t)(size))
109 #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size))
/openjdk7/jdk/test/java/util/AbstractMap/
H A DToString.java27 * @summary toString method fails if size changes in between a call to size
51 public int size() { method in class:LyingMap
52 return super.size() + 1; // Lies, lies, all lies!

Completed in 150 milliseconds

1234567891011>>