Lines Matching refs:size
38 * Grow the size of the array.
153 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
164 if (data && count < size)
168 if (data && count >= size)
181 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
191 /* clamp size to 0 */
192 if (size < 0)
193 size = 0;
194 /* do not exceed buffer size */
195 if (count > size)
196 count = size;