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

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DChunkedIntArray.java44 final int slotsize=4; // Locked, MUST be power of two in current code field in class:ChunkedIntArray
59 ChunkedIntArray(int slotsize) argument
61 if(this.slotsize<slotsize)
62 throw new ArrayIndexOutOfBoundsException(XMLMessages.createXMLMessage(XMLErrorResources.ER_CHUNKEDINTARRAY_NOT_SUPPORTED, new Object[]{Integer.toString(slotsize)})); //"ChunkedIntArray("+slotsize+") not currently supported");
63 else if (this.slotsize>slotsize)
64 System.out.println("*****WARNING: ChunkedIntArray("+slotsize+") wasting "+(this.slotsize
[all...]

Completed in 30 milliseconds