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

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

Completed in 565 milliseconds