Lines Matching defs:count
41 GLuint count;
64 return (a->offset == b->offset) && (a->count == b->count) &&
106 unsigned index_size, GLintptr offset, GLuint count,
144 key.count = count;
159 unsigned new_hit_count = bufferObj->MinMaxCacheHitIndices + count;
166 bufferObj->MinMaxCacheMissIndices += count;
178 unsigned index_size, GLintptr offset, GLuint count,
204 entry->key.count = count;
232 vbo_get_minmax_index_mapped(unsigned count, unsigned index_size,
243 for (unsigned i = 0; i < count; i++) {
253 _mesa_uint_array_min_max(ui_indices, &min_ui, &max_ui, count);
257 for (unsigned i = 0; i < count; i++) {
271 for (unsigned i = 0; i < count; i++) {
279 for (unsigned i = 0; i < count; i++) {
293 for (unsigned i = 0; i < count; i++) {
301 for (unsigned i = 0; i < count; i++) {
324 const void *ptr, GLintptr offset, unsigned count,
334 GLsizeiptr size = MIN2((GLsizeiptr)count * index_size, obj->Size);
336 if (vbo_get_minmax_cached(obj, index_size, offset, count, min_index,
344 vbo_get_minmax_index_mapped(count, index_size, restart_index,
349 vbo_minmax_cache_store(ctx, obj, index_size, offset, count, *min_index,
370 GLuint count;
379 count = start_prim->count;
380 /* Do combination if possible to reduce map/unmap count */
382 (prims[i].start + prims[i].count == prims[i+1].start)) {
383 count += prims[i+1].count;
389 count, 1 << ib->index_size_shift,
412 /* Do combination if possible to reduce map/unmap count */
414 (draws[i].start + draws[i].count == draws[i+1].start)) {
415 draw.count += draws[i+1].count;
419 if (!draw.count)
427 draw.count, info->index_size,