Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/
H A Dline-map.h1336 int m_alloc; variable
1345 : m_num (0), m_alloc (0), m_extra (NULL) in semi_embedded_vec()
1404 linemap_assert (m_alloc == 0); in push()
1405 m_alloc = 16; in push()
1406 m_extra = XNEWVEC (T, m_alloc); in push()
1408 else if (idx >= m_alloc) in push()
1410 linemap_assert (m_alloc > 0); in push()
1411 m_alloc *= 2; in push()
1412 m_extra = XRESIZEVEC (T, m_extra, m_alloc); in push()
1415 linemap_assert (idx < m_alloc); in push()
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/
H A 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.old/dist/gcc/
H A Dvec.h215 unsigned m_alloc : 31; member
232 return calculate_allocation_1 (pfx->m_alloc, pfx->m_num + reserve); in calculate_allocation()
578 unsigned allocated (void) const { return m_vecpfx.m_alloc; }
904 return m_vecpfx.m_alloc - m_vecpfx.m_num >= nelems;
1296 m_vecpfx.m_alloc = alloc;
1309 gcc_checking_assert (length () <= len && len <= m_vecpfx.m_alloc);
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A 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);