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

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCode.java114 void setInstructionMap(int[] insnMap, int mapLen) { argument
117 this.insnMap = allocateInstructionMap(insnMap, mapLen);
179 private Object allocateInstructionMap(int[] insnMap, int mapLen) { argument
182 byte[] map = new byte[mapLen+1];
183 for (int i = 0; i < mapLen; i++) {
186 map[mapLen] = (byte)(PClimit + Byte.MIN_VALUE);
189 short[] map = new short[mapLen+1];
190 for (int i = 0; i < mapLen; i++) {
193 map[mapLen] = (short)(PClimit + Short.MIN_VALUE);
196 int[] map = Arrays.copyOf(insnMap, mapLen
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java2487 int mapLen = lowerCharArray.length;
2488 if (mapLen > srcCount) {
2489 char[] result2 = new char[result.length + mapLen - srcCount];
2493 for (int x = 0; x < mapLen; ++x) {
2496 resultOffset += (mapLen - srcCount);
2650 int mapLen = upperCharArray.length;
2651 if (mapLen > srcCount) {
2652 char[] result2 = new char[result.length + mapLen - srcCount];
2656 for (int x = 0; x < mapLen; ++x) {
2659 resultOffset += (mapLen
[all...]

Completed in 36 milliseconds