Searched refs:BLOCKCOUNT (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/text/
H A DUCompactIntArray.java96 for (int i = 0; i < indices[plane].length; ++i, iBlockStart += BLOCKCOUNT) {
104 int jBlockStart = limitCompacted * BLOCKCOUNT;
107 values[plane], jBlockStart, BLOCKCOUNT);
119 int newSize = limitCompacted * BLOCKCOUNT;
194 private static final int BLOCKCOUNT = (1<<BLOCKSHIFT); field in class:UCompactIntArray
197 private static final int BLOCKMASK = BLOCKCOUNT - 1;
H A DCompactByteArray.java104 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT))
164 for (int i = 0; i < indices.length; ++i, iBlockStart += BLOCKCOUNT) {
176 ++j, jBlockStart += BLOCKCOUNT) {
179 values, jBlockStart, BLOCKCOUNT)) {
187 values, jBlockStart, BLOCKCOUNT);
201 int newSize = limitCompacted*BLOCKCOUNT;
343 private static final int BLOCKCOUNT =(1<<BLOCKSHIFT); field in class:CompactByteArray
346 private static final int BLOCKMASK = BLOCKCOUNT - 1;

Completed in 60 milliseconds