Home | History | Annotate | Download | only in utils

Lines Matching refs:m_firstFree

151    * of m_lastChunk and m_firstFree.
156 * Field m_firstFree is an index into m_array[m_lastChunk][], pointing to
160 * (m_lastChunk<<m_chunkBits) + m_firstFree
162 int m_firstFree = 0;
270 return (m_lastChunk << m_chunkBits) + m_firstFree;
280 return (m_lastChunk << m_chunkBits) + m_firstFree;
292 m_firstFree = 0;
335 m_firstFree = l & m_chunkMask;
342 if(m_firstFree==0 && m_lastChunk>0)
345 m_firstFree=m_chunkSize;
381 rootFSB.m_firstFree = l & m_chunkMask;
401 int length = (m_lastChunk << m_chunkBits) + m_firstFree;
424 if (m_firstFree < m_chunkSize) // Simplified test single-character-fits
461 m_firstFree = 0;
465 chunk[m_firstFree++] = value;
489 int available = m_chunkSize - m_firstFree;
500 m_firstFree);
542 m_firstFree = 0;
547 m_firstFree += available;
571 int available = m_chunkSize - m_firstFree;
582 m_firstFree);
624 m_firstFree = 0;
629 m_firstFree += available;
654 int available = m_chunkSize - m_firstFree;
664 System.arraycopy(chars, copyfrom, m_array[m_lastChunk], m_firstFree,
707 m_firstFree = 0;
712 m_firstFree += available;
741 int available = m_chunkSize - m_firstFree;
760 m_array[m_lastChunk], m_firstFree, runlength);
764 m_array[m_lastChunk], m_firstFree + runlength,
807 m_firstFree = 0;
812 m_firstFree += available;
1278 m_firstFree = source.m_chunkSize;
1288 source.m_firstFree = 0;