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

/openjdk7/jdk/src/windows/native/sun/windows/
H A DCmdIDList.cpp42 m_array = (CmdIDEntry *)SAFE_SIZE_ARRAY_ALLOC(safe_Malloc, m_capacity, sizeof(AwtObject*));
48 free(m_array);
59 m_array[i].next_free_index = i+1;
60 m_array[m_capacity-1].next_free_index = -1; // nil
83 m_array = (CmdIDEntry *)SAFE_SIZE_ARRAY_REALLOC(safe_Realloc, m_array,
91 m_first_free = m_array[newid].next_free_index; // advance free pointer
92 m_array[newid].obj = obj;
102 if (m_array[id].next_free_index <= ARRAY_MAXIMUM_SIZE) {
105 return m_array[i
[all...]
H A DCmdIDList.h54 CmdIDEntry *m_array; // the vector's contents member in class:AwtCmdIDList
57 UINT m_capacity; // size of currently allocated m_array
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java137 * Field m_array holds the string buffer's text contents, using an
144 char[][] m_array; field in class:FastStringBuffer
147 * Field m_lastChunk is an index into m_array[], pointing to the last
158 * Field m_firstFree is an index into m_array[m_lastChunk][], pointing to
160 * FastStringBuffer's current content. Since m_array[][] is zero-based,
168 * length equals m_chunkSize, and which replaces m_array[0]. This allows
212 m_array = new char[16][];
223 m_array[0] = new char[m_chunkSize];
310 m_array = new char[16][0];
311 m_array[
[all...]

Completed in 52 milliseconds