Searched refs:m_table (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DelfStringTable.cpp37 m_table = NULL;
45 m_table = (char*)os::malloc(sizeof(char) * shdr.sh_size, mtInternal);
46 if (m_table != NULL) {
49 fread((void*)m_table, shdr.sh_size, 1, file) != 1 ||
52 os::free((void*)m_table);
53 m_table = NULL;
61 if (m_table != NULL) {
62 os::free((void*)m_table);
74 if (m_table != NULL) {
75 jio_snprintf(buf, buflen, "%s", (const char*)(m_table
[all...]
H A DelfStringTable.hpp61 const char* m_table; member in class:ElfStringTable
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DExpandedNameTable.java104 private HashEntry[] m_table; field in class:ExpandedNameTable
125 m_table = new HashEntry[m_capacity];
140 m_table[i] = new HashEntry(m_defaultExtendedTypes[i], i, i, null);
201 for (HashEntry e = m_table[index]; e != null; e = e.next)
235 HashEntry entry = new HashEntry(newET, m_nextType, hash, m_table[index]);
236 m_table[index] = entry;
250 HashEntry[] oldTable = m_table;
256 m_table = new HashEntry[newCapacity];
268 e.next = m_table[newIndex];
269 m_table[newInde
[all...]

Completed in 35 milliseconds