Searched defs:cchBoth (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dministring.cpp74 size_t cchBoth = pThis->m_cch + cbChars; local
75 if (cchBoth >= pThis->m_cbAllocated)
81 if (cbAlloc <= cchBoth)
82 cbAlloc = RT_ALIGN_Z(cchBoth + 1, IPRT_MINISTRING_APPEND_ALIGNMENT);
85 AssertReleaseReturn(pThis->capacity() > cchBoth, 0);
90 pThis->m_cch = cchBoth;
91 pThis->m_psz[cchBoth] = '\0';
109 size_t cchBoth = cchThis + cchThat; local
111 if (cchBoth >= m_cbAllocated)
113 reserve(RT_ALIGN_Z(cchBoth
133 size_t cchBoth = cchThis + cchThat; local
[all...]

Completed in 49 milliseconds