Searched defs:cElementsOther (Results 1 - 3 of 3) sorted by relevance
/vbox/include/VBox/com/ |
H A D | list.h | 135 size_t const cElementsOther = sfaOther.size(); local 136 resizeArray(cElementsOther); 137 m_cElements = cElementsOther; 138 for (size_t i = 0; i < cElementsOther; ++i) 175 size_t cElementsOther = other.size(); local 176 if (cElementsOther != m_cCapacity) 177 resizeArrayNoErase(cElementsOther); 178 m_cElements = cElementsOther; 179 for (size_t i = 0; i < cElementsOther; ++i)
|
H A D | mtlist.h | 134 size_t const cElementsOther = sfaOther.size(); local 135 resizeArray(cElementsOther); 136 m_cElements = cElementsOther; 137 for (size_t i = 0; i < cElementsOther; ++i)
|
/vbox/include/iprt/cpp/ |
H A D | list.h | 238 size_t const cElementsOther = other.m_cElements; local 239 resizeArrayNoErase(cElementsOther); 240 RTCListHelper<T, ITYPE>::copyTo(m_pArray, other.m_pArray, 0, cElementsOther); 241 m_cElements = cElementsOther; 367 size_t cElementsOther = other.m_cElements; local 368 if (RT_LIKELY(cElementsOther > 0)) 370 if (m_cCapacity - m_cElements < cElementsOther) 371 growArray(m_cCapacity + (cElementsOther - (m_cCapacity - m_cElements))); 373 memmove(&m_pArray[i + cElementsOther], &m_pArray[i], (m_cElements - i) * sizeof(ITYPE)); 375 RTCListHelper<T, ITYPE>::copyTo(&m_pArray[i], other.m_pArray, 0, cElementsOther); [all...] |
Completed in 55 milliseconds