Lines Matching refs:compat_size
46 unsigned int compat_size; /* for binary compatibility */ member
61 if (buf->size < INT_MAX) buf->compat_size = buf->size; \
62 else buf->compat_size = INT_MAX; \
72 if (buf->size != (size_t) buf->compat_size) \
73 if (buf->compat_size < INT_MAX) \
74 buf->size = buf->compat_size; \
135 ret->compat_size = xmlDefaultBufferSize; in xmlBufCreate()
170 ret->compat_size = (int) ret->size; in xmlBufCreateSize()
213 buf->compat_size = 0; in xmlBufDetach()
244 ret->compat_size = size; in xmlBufCreateStatic()
247 ret->compat_size = INT_MAX; in xmlBufCreateStatic()
1181 ret->compat_size = buffer->size; in xmlBufFromBuffer()