Searched defs:sizes (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DageTable.hpp37 // Note: all sizes are in oops
47 size_t sizes[table_size]; member in class:VALUE_OBJ_CLASS_SPEC
60 sizes[age] += oop_size;
/openjdk7/jdk/test/com/sun/management/ThreadMXBean/
H A DThreadAllocatedMemory.java42 private static long[] sizes = new long[NUM_THREADS]; field in class:ThreadAllocatedMemory
112 sizes[i] = mbean.getThreadAllocatedBytes(threads[i].getId());
128 if (sizes[i] > newSize) {
131 " previous allocated bytes = " + sizes[i] +
135 " Previous allocated bytes = " + sizes[i] +
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeSequence.java31 * of sizes and corresponding positions.
41 * in which the column sizes are not all equal.
50 * whenever one or more column sizes changed.
85 * storing the sizes or storing their positions
91 * If sizes are stored, finding the index of the entry
109 * a set of integer sizes, copying it into the new array, and then
146 * @param numEntries the number of sizes to track
159 * @param numEntries the number of sizes to track
169 * that contains the specified sizes.
171 * @param sizes th
174 SizeSequence(int[] sizes) argument
210 setSizes(int[] sizes) argument
217 setSizes(int from, int to, int[] sizes) argument
238 getSizes(int from, int to, int[] sizes) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayKlass.cpp62 oop arrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) { argument
H A DobjArrayKlass.cpp81 oop objArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) { argument
82 int length = *sizes;
94 oop sub_array = ak->multi_allocate(rank-1, &sizes[1], CHECK_NULL);
103 sizes += 1;
104 if (*sizes < 0) {
/openjdk7/jdk/test/java/util/AbstractCollection/
H A DToArrayTest.java40 private int[] sizes; field in class:ToArrayTest.TestCollection
50 * call to size will return sizes[0], then sizes[1] etc. This allows us
52 * without having to perform concurrent changes. If sizes[n+1] contains
57 void setSizeSequence(int... sizes) { argument
58 this.sizes = sizes;
65 return sizes[nextSize == sizes.length - 1 ? nextSize : nextSize++];
74 return pos < sizes[nextSiz
[all...]
/openjdk7/jdk/src/share/sample/forkjoin/mergesort/
H A DMergeDemo.java51 * and the sort is executed with arrays of different sizes to see the
52 * trade offs by using multiple threads for different sizes of the array.
104 * {@code sizes} represents the different array sizes
108 private final Range sizes; field in class:MergeDemo.Configuration
114 private Configuration(Range sizes, Range parallelism) { argument
115 this.sizes = sizes;
121 * parameters for creating the array sizes and parallelism sizes
207 printResults(Range sizes, Range parallelism, long[][] times) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriteParam.java213 * preferred sizes. If the value is non-<code>null</code>, it
393 private static Dimension[] clonePreferredTileSizes(Dimension[] sizes) { argument
394 if (sizes == null) {
397 Dimension[] temp = new Dimension[sizes.length];
398 for (int i = 0; i < sizes.length; i++) {
399 temp[i] = new Dimension(sizes[i]);
526 * sizes. To specify a fixed size, use the same width and height
/openjdk7/jdk/test/java/util/Arrays/
H A DArrayObjectMethods.java35 int[] sizes = {0, 10, 100, 200, 1000}; field in class:ArrayObjectMethods
55 for (int size : sizes) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCodingChooser.java236 CodingMethod choose(int[] values, int start, int end, Coding regular, int[] sizes) { argument
241 if (sizes != null) {
243 sizes[BYTE_SIZE] = computed[BYTE_SIZE];
244 sizes[ZIP_SIZE] = computed[ZIP_SIZE];
370 if (sizes != null) {
371 sizes[BYTE_SIZE] = bestByteSize;
372 sizes[ZIP_SIZE] = bestZipSize;
387 CodingMethod choose(int[] values, Coding regular, int[] sizes) { argument
388 return choose(values, 0, values.length, regular, sizes);
486 int[] sizes
547 computeSize(CodingMethod c, int[] values, int start, int end, int[] sizes) argument
561 computeSize(CodingMethod c, int[] values, int[] sizes) argument
[all...]
H A DBandStructure.java602 int[] sizes = {0,0};
605 sizes);
606 outputSize = sizes[CodingChooser.BYTE_SIZE];
1094 int[] sizes) {
1103 return cc.choose(values, start, end, regular, sizes);
1371 // archiveSize1 sizes most of the archive [archive_options..file_bits).
1092 chooseCoding(int[] values, int start, int end, Coding regular, String bandName, int[] sizes) argument
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java925 int n = sizes.length;
938 genTable(result, tableNames[k], tables[k], 0, bytes[k]<<3, sizes[k], preshifted[k],
939 sizes[k+1], false, false, k==0);
947 sizes[n - 1], false, 0, true, !(identifiers), false);
951 genTable(result, "B", tables[n - 1], 32, 16, sizes[n - 1], false, 0, true, true, false);
978 int n = sizes.length;
1563 for (int k = 0; k < sizes.length; k++) {
1564 int offset = ((k < sizes.length - 1) ? 0 : bitoffset);
1567 int mask = (1 << (sizes[k] - offset)) - 1;
1574 String tblname = (k == sizes
1608 static int[] sizes; field in class:GenerateCharacter
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java673 // updates current and max stack sizes
695 // updates current and max stack sizes only for NEWARRAY
718 // updates current and max stack sizes
777 // updates current and max stack sizes only if opcode == NEW
820 // updates current and max stack sizes
850 * the sizes of the arguments and of the return value
854 // the above sizes have not been computed yet,
867 // updates current and max stack sizes
1020 // resets the relative current and max stack sizes
1046 // updates current and max stack sizes
2586 getNewOffset( final int[] indexes, final int[] sizes, final int begin, final int end) argument
2621 getNewOffset( final int[] indexes, final int[] sizes, final Label label) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneUI.java932 * Messaged to reset the preferred sizes.
1277 protected int[] sizes; field in class:BasicSplitPaneUI.BasicHorizontalLayoutManager
1295 sizes = new int[3];
1332 getSizeForPrimaryAxis(dSize) != sizes[2])) {
1334 sizes[2] = getSizeForPrimaryAxis(dSize);
1337 sizes[2] = 0;
1357 setComponentToSize(components[counter], sizes[counter],
1359 nextLocation += sizes[counter];
1415 sizes[2] = getSizeForPrimaryAxis(component.
1420 sizes[
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c1950 XRRScreenSize *sizes;
1954 sizes = awt_XRRConfigSizes(config, &nsizes);
1957 if ((sizes != NULL) &&
1960 XRRScreenSize curSize = sizes[curSizeIndex];
1996 XRRScreenSize *sizes = awt_XRRConfigSizes(config, &nsizes); local
1998 if (sizes != NULL) {
2001 XRRScreenSize size = sizes[i];
2046 XRRScreenSize *sizes = awt_XRRConfigSizes(config, &nsizes); local
2049 if (sizes != NULL) {
2054 XRRScreenSize size = sizes[
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java1858 private Vector sizes = new Vector(); field in class:ServiceDialog.MediaPanel
1917 if ((index >= 0) && (index < sizes.size())) {
1925 asCurrent.add((MediaSizeName)sizes.get(index));
1952 asCurrent.add((MediaSizeName)sizes.get(size));
1979 sizes.clear();
1997 sizes.add(medium);
2007 boolean msSupported = (mediaSupported && (sizes.size() > 0));
2025 cbSize.setSelectedIndex(sizes.size() > 0 ? sizes.indexOf(defMedia) : -1);
2035 if (sizes
[all...]

Completed in 148 milliseconds