Searched refs:newMap (Results 1 - 13 of 13) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
H A DOpMapVector.java89 int newMap[] = new int[m_mapSize];
91 System.arraycopy(m_map, 0, newMap, 0, oldSize);
93 m_map = newMap;
107 int newMap[] = new int[size];
109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
112 m_map = newMap;
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DObjectVector.java133 Object newMap[] = new Object[m_mapSize];
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
137 m_map = newMap;
157 Object newMap[] = new Object[m_mapSize];
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
161 m_map = newMap;
183 Object newMap[] = new Object[m_mapSize];
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
187 m_map = newMap;
210 Object newMap[]
[all...]
H A DIntStack.java79 int newMap[] = new int[m_mapSize];
81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
83 m_map = newMap;
H A DIntVector.java133 int newMap[] = new int[m_mapSize];
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
137 m_map = newMap;
157 int newMap[] = new int[m_mapSize];
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
161 m_map = newMap;
183 int newMap[] = new int[m_mapSize];
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
187 m_map = newMap;
210 int newMap[]
[all...]
H A DStringVector.java101 String newMap[] = new String[m_mapSize];
103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
105 m_map = newMap;
181 String newMap[] = new String[m_mapSize];
183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 m_map = newMap;
H A DNodeVector.java130 int newMap[] = new int[m_mapSize];
132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
134 m_map = newMap;
164 int newMap[] = new int[m_mapSize];
166 System.arraycopy(m_map, 0, newMap, 0, ff + 1);
168 m_map = newMap;
258 int newMap[] = new int[m_mapSize];
260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
262 m_map = newMap;
374 int newMap[]
[all...]
H A DObjectStack.java79 Object newMap[] = new Object[m_mapSize];
81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
83 m_map = newMap;
H A DStringToIntTable.java100 String newMap[] = new String[m_mapSize];
102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
104 m_map = newMap;
H A DSuballocatedIntVector.java167 int[][] newMap=new int[newsize][];
168 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
169 m_map=newMap;
207 int[][] newMap=new int[newsize][];
208 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
209 m_map=newMap;
265 int[][] newMap=new int[newsize][];
266 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
267 m_map=newMap;
399 int[][] newMap
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
H A DStringToIntTable.java107 String newMap[] = new String[m_mapSize];
109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
111 m_map = newMap;
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DNodeSet.java891 Node newMap[] = new Node[m_mapSize];
893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
895 m_map = newMap;
925 Node newMap[] = new Node[m_mapSize];
927 System.arraycopy(m_map, 0, newMap, 0, ff + 1);
929 m_map = newMap;
1019 Node newMap[] = new Node[m_mapSize];
1021 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
1023 m_map = newMap;
1116 Node newMap[]
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java291 int[] newMap[] = new int[m_mapSize][];
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
293 m_map = newMap;
/dalvik/vm/analysis/
H A DRegisterMap.c1005 RegisterMap* newMap; local
1034 newMap = uncompressMapDifferential(curMap);
1039 newMap = NULL; // make gcc happy
1042 if (newMap == NULL) {
1055 pStats->totalExpandedMapSize += computeRegisterMapSize(newMap);
1071 dvmSetRegisterMap(method, newMap);
1076 return newMap;

Completed in 286 milliseconds