Searched defs:cellSize (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DGrowableIntArray.java41 int cellSize; field in class:GrowableIntArray
43 public GrowableIntArray(int cellSize, int initialSize) { argument
46 this.cellSize = cellSize;
51 size += cellSize;
79 return getNextCellIndex() / cellSize;
83 return cellSize * cellIndex;
99 return size / cellSize;
H A DGrowableByteArray.java42 int cellSize; field in class:GrowableByteArray
44 public GrowableByteArray(int cellSize, int initialSize) argument
48 this.cellSize = cellSize;
54 size += cellSize;
91 return getNextCellIndex() / cellSize;
96 return cellSize * cellIndex;
110 return size / cellSize;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodData.java150 cellSize = (int)VM.getVM().getAddressSize();
203 public static int cellSize; field in class:MethodData
308 int elements = dataSize() / cellSize;
311 Address value = base.getAddressAt(offset + i * MethodData.cellSize);

Completed in 160 milliseconds