Lines Matching defs:m_extra
75 that they are within the dynamically-allocated m_extra.
100 T *m_extra;
108 : m_num (0), m_alloc (0), m_extra (NULL)
117 XDELETEVEC (m_extra);
131 linemap_assert (m_extra != NULL);
132 return m_extra[idx - NUM_EMBEDDED];
147 linemap_assert (m_extra != NULL);
148 return m_extra[idx - NUM_EMBEDDED];
163 /* Offset "idx" to be an index within m_extra. */
165 if (NULL == m_extra)
169 m_extra = XNEWVEC (T, m_alloc);
175 m_extra = XRESIZEVEC (T, m_extra, m_alloc);
177 linemap_assert (m_extra);
179 m_extra[idx] = value;