Home
last modified time | relevance | path

Searched refs:m_alloc (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libcpp/include/
Dline-map.h1389 int m_alloc; variable
1398 : m_num (0), m_alloc (0), m_extra (NULL) in semi_embedded_vec()
1457 linemap_assert (m_alloc == 0); in push()
1458 m_alloc = 16; in push()
1459 m_extra = XNEWVEC (T, m_alloc); in push()
1461 else if (idx >= m_alloc) in push()
1463 linemap_assert (m_alloc > 0); in push()
1464 m_alloc *= 2; in push()
1465 m_extra = XRESIZEVEC (T, m_extra, m_alloc); in push()
1468 linemap_assert (idx < m_alloc); in push()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dvec.h215 unsigned m_alloc : 31; member
232 return calculate_allocation_1 (pfx->m_alloc, pfx->m_num + reserve); in calculate_allocation()
586 unsigned allocated (void) const { return m_vecpfx.m_alloc; }
915 return m_vecpfx.m_alloc - m_vecpfx.m_num >= nelems;
1323 m_vecpfx.m_alloc = alloc;
1336 gcc_checking_assert (length () <= len && len <= m_vecpfx.m_alloc);