Home
last modified time | relevance | path

Searched refs:compat_size (Results 1 – 2 of 2) sorted by relevance

/third_party/libxml2/
Dbuf.c50 unsigned int compat_size; /* for binary compatibility */ member
65 if (buf->size < INT_MAX) buf->compat_size = buf->size; \
66 else buf->compat_size = INT_MAX; \
76 if (buf->size != (size_t) buf->compat_size) \
77 if (buf->compat_size < INT_MAX) \
78 buf->size = buf->compat_size; \
139 ret->compat_size = xmlDefaultBufferSize; in xmlBufCreate()
176 ret->compat_size = (ret->size > INT_MAX ? INT_MAX : ret->size); in xmlBufCreateSize()
219 buf->compat_size = 0; in xmlBufDetach()
250 ret->compat_size = size; in xmlBufCreateStatic()
[all …]
/third_party/chromium/patch/
D0001-cve.patch97323 - ret->compat_size = xmlDefaultBufferSize;
97345 - ret->compat_size = (int) ret->size;
97356 - buf->compat_size = 0;
97367 - ret->compat_size = size;
97370 - ret->compat_size = INT_MAX;
97524 - ret->compat_size = buffer->size;