Searched refs:m_datasize (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/atf/atf-c/detail/
H A Ddynstr.c50 PRE(newsize > ad->m_datasize);
59 ad->m_datasize = newsize;
83 if (newlen + sizeof(char) > ad->m_datasize) {
129 ad->m_datasize = 1;
142 ad->m_datasize = strlen(fmt) + 1;
149 ad->m_datasize *= 2;
150 ad->m_data = (char *)malloc(ad->m_datasize);
157 ret = vsnprintf(ad->m_data, ad->m_datasize, fmt, ap2);
166 if ((size_t)ret >= ad->m_datasize) {
171 } while (ad->m_length >= ad->m_datasize);
[all...]
H A Ddynstr.h41 size_t m_datasize; member in struct:atf_dynstr

Completed in 163 milliseconds