Home | History | Annotate | Download | only in ref

Lines Matching refs:m_table

102   private HashEntry[] m_table;
123 m_table = new HashEntry[m_capacity];
138 m_table[i] = new HashEntry(m_defaultExtendedTypes[i], i, i, null);
199 for (HashEntry e = m_table[index]; e != null; e = e.next)
233 HashEntry entry = new HashEntry(newET, m_nextType, hash, m_table[index]);
234 m_table[index] = entry;
248 HashEntry[] oldTable = m_table;
254 m_table = new HashEntry[newCapacity];
266 e.next = m_table[newIndex];
267 m_table[newIndex] = e;