| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | sse_minmax.h | 33 unsigned *max_index, const unsigned count);
|
| H A D | sse_minmax.c | 34 unsigned *max_index, const unsigned count) 93 *max_index = max_ui; 33 _mesa_uint_array_min_max(const unsigned * ui_indices,unsigned * min_index,unsigned * max_index,const unsigned count) argument
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | sse_minmax.h | 33 unsigned *max_index, const unsigned count);
|
| H A D | sse_minmax.c | 34 unsigned *max_index, const unsigned count) 93 *max_index = max_ui; 33 _mesa_uint_array_min_max(const unsigned * ui_indices,unsigned * min_index,unsigned * max_index,const unsigned count) argument
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/shared/ |
| H A D | pan_minmax_cache.h | 43 unsigned *min_index, unsigned *max_index); 47 unsigned min_index, unsigned max_index);
|
| H A D | pan_minmax_cache.c | 45 unsigned *min_index, unsigned *max_index) 58 *max_index = hit >> 32; 69 unsigned min_index, unsigned max_index) 72 uint64_t value = min_index | (((uint64_t)max_index) << 32); 44 panfrost_minmax_cache_get(struct panfrost_minmax_cache * cache,unsigned start,unsigned count,unsigned * min_index,unsigned * max_index) argument 68 panfrost_minmax_cache_add(struct panfrost_minmax_cache * cache,unsigned start,unsigned count,unsigned min_index,unsigned max_index) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/ |
| H A D | t_rebase.h | 36 GLuint max_index,
|
| H A D | t_split.c | 108 GLuint max_index, 124 else if (max_index - min_index >= limits->max_verts) { 138 min_index, max_index, draw, limits); 146 if (max_index - min_index >= limits->max_verts) { 152 min_index, max_index, draw, limits); 102 _tnl_split_prims(struct gl_context * ctx,const struct tnl_vertex_array arrays[],const struct _mesa_prim * prim,GLuint nr_prims,const struct _mesa_index_buffer * ib,GLuint min_index,GLuint max_index,tnl_draw_func draw,const struct split_limits * limits) argument
|
| H A D | tnl.h | 109 GLuint max_index, 118 GLboolean index_bounds_valid, GLuint min_index, GLuint max_index, 158 * \param index_bounds_valid are min_index and max_index valid? 160 * \param max_index highest vertex index used 176 GLuint max_index, 203 GLuint max_index,
|
| H A D | t_split_inplace.c | 51 GLuint max_index; member in struct:split_context 77 ib.count = split->max_index - split->min_index + 1; 86 assert(split->max_index >= split->min_index); 95 split->max_index, 100 split->max_index = 0; 124 split->max_index = MAX2(split->max_index, prim->start + prim->count - 1); 138 (prim->start < split->max_index && 139 split->max_index - prim->start >= split->limit)) 273 GLuint max_index, 267 _tnl_split_inplace(struct gl_context * ctx,const struct tnl_vertex_array * arrays,const struct _mesa_prim * prim,GLuint nr_prims,const struct _mesa_index_buffer * ib,GLuint min_index,GLuint max_index,tnl_draw_func draw,const struct split_limits * limits) argument [all...] |
| H A D | t_split.h | 59 GLuint max_index,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/panfrost/ |
| H A D | pan_helpers.c | 92 unsigned *min_index, unsigned *max_index) 102 *max_index = info->max_index; 116 max_index); 132 u_vbuf_get_minmax_index(&ctx->base, info, draw, min_index, max_index); 137 *min_index, *max_index); 89 panfrost_get_index_buffer_bounded(struct panfrost_batch * batch,const struct pipe_draw_info * info,const struct pipe_draw_start_count_bias * draw,unsigned * min_index,unsigned * max_index) argument
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/ |
| H A D | t_rebase.h | 36 GLuint max_index,
|
| H A D | tnl.h | 109 GLuint max_index, 118 unsigned restart_index, unsigned min_index, unsigned max_index, 157 * \param index_bounds_valid are min_index and max_index valid? 159 * \param max_index highest vertex index used 175 GLuint max_index, 201 GLuint max_index,
|
| H A D | t_split.c | 108 GLuint max_index, 126 else if (max_index - min_index >= limits->max_verts) { 148 if (max_index - min_index >= limits->max_verts) { 102 _tnl_split_prims(struct gl_context * ctx,const struct tnl_vertex_array arrays[],const struct _mesa_prim * prim,GLuint nr_prims,const struct _mesa_index_buffer * ib,GLuint min_index,GLuint max_index,GLuint num_instances,GLuint base_instance,tnl_draw_func draw,const struct split_limits * limits) argument
|
| H A D | t_split_inplace.c | 51 GLuint max_index; member in struct:split_context 79 ib.count = split->max_index - split->min_index + 1; 88 assert(split->max_index >= split->min_index); 97 split->max_index, 103 split->max_index = 0; 127 split->max_index = MAX2(split->max_index, prim->start + prim->count - 1); 141 (prim->start < split->max_index && 142 split->max_index - prim->start >= split->limit)) 287 split.max_index [all...] |
| H A D | t_rebase.c | 110 GLuint max_index, 126 printf("%s %d..%d\n", __func__, min_index, max_index); 159 max_index, num_instances, base_instance, draw); 161 max_index, num_instances, base_instance, draw); 259 max_index - min_index,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_draw.c | 39 * all vertex lookups need to be clamped to 0..max_index-1 to prevent 52 unsigned max_index; local in function:util_draw_max_index 55 max_index = ~0U - 1; 107 max_index = MIN2(max_index, buffer_max_index); 125 return max_index + 1;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/vbo/ |
| H A D | vbo_minmax_index.c | 108 GLuint *min_index, GLuint *max_index) 151 *max_index = entry->max; 236 unsigned *min_index, unsigned *max_index) 264 *max_index = max_ui; 286 *max_index = max_us; 308 *max_index = max_ub; 328 GLuint *max_index) 338 max_index)) 347 min_index, max_index); 351 *max_index); 106 vbo_get_minmax_cached(struct gl_buffer_object * bufferObj,unsigned index_size,GLintptr offset,GLuint count,GLuint * min_index,GLuint * max_index) argument 233 vbo_get_minmax_index_mapped(unsigned count,unsigned index_size,unsigned restartIndex,bool restart,const void * indices,unsigned * min_index,unsigned * max_index) argument 324 vbo_get_minmax_index(struct gl_context * ctx,struct gl_buffer_object * obj,const void * ptr,GLintptr offset,unsigned count,unsigned index_size,bool primitive_restart,unsigned restart_index,GLuint * min_index,GLuint * max_index) argument 360 vbo_get_minmax_indices(struct gl_context * ctx,const struct _mesa_prim * prims,const struct _mesa_index_buffer * ib,GLuint * min_index,GLuint * max_index,GLuint nr_prims,bool primitive_restart,unsigned restart_index) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/ |
| H A D | svga_draw_private.h | 148 unsigned max_index[QSZ]; member in struct:draw_cmd 219 unsigned max_index, 229 unsigned max_index,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/ |
| H A D | vbo_minmax_index.c | 106 GLuint *min_index, GLuint *max_index) 149 *max_index = entry->max; 240 GLuint *min_index, GLuint *max_index, 255 count, min_index, max_index)) 290 *max_index = max_ui; 312 *max_index = max_us; 334 *max_index = max_ub; 343 count, *min_index, *max_index); 356 GLuint *max_index, 364 *max_index 104 vbo_get_minmax_cached(struct gl_buffer_object * bufferObj,unsigned index_size,GLintptr offset,GLuint count,GLuint * min_index,GLuint * max_index) argument 237 vbo_get_minmax_index(struct gl_context * ctx,const struct _mesa_prim * prim,const struct _mesa_index_buffer * ib,GLuint * min_index,GLuint * max_index,const GLuint count) argument 352 vbo_get_minmax_indices(struct gl_context * ctx,const struct _mesa_prim * prims,const struct _mesa_index_buffer * ib,GLuint * min_index,GLuint * max_index,GLuint nr_prims) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_draw.h | 57 GLuint max_index,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_prim_restart.h | 62 unsigned *max_index,
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_draw.h | 60 unsigned max_index,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/ |
| H A D | nouveau_vbo_t.c | 246 GLuint min_index, GLuint max_index, 255 GLuint min_index, GLuint max_index) 272 if (max_index - min_index > vert_avail || 281 max_index, TAG(vbo_render_prims), &limits); 313 int base, unsigned min_index, unsigned max_index, int *pdelta) 343 int n = max_index - min_index + 1; 387 GLuint max_index) 404 max_index, &delta); 437 GLuint max_index) 484 GLuint min_index, GLuint max_index, 252 vbo_maybe_split(struct gl_context * ctx,const struct tnl_vertex_array * arrays,const struct _mesa_prim * prims,GLuint nr_prims,const struct _mesa_index_buffer * ib,GLuint min_index,GLuint max_index) argument 312 vbo_bind_vertices(struct gl_context * ctx,const struct tnl_vertex_array * arrays,int base,unsigned min_index,unsigned max_index,int * pdelta) argument 384 vbo_draw_vbo(struct gl_context * ctx,const struct tnl_vertex_array * arrays,const struct _mesa_prim * prims,GLuint nr_prims,const struct _mesa_index_buffer * ib,GLuint min_index,GLuint max_index) argument 434 vbo_draw_imm(struct gl_context * ctx,const struct tnl_vertex_array * arrays,const struct _mesa_prim * prims,GLuint nr_prims,const struct _mesa_index_buffer * ib,GLuint min_index,GLuint max_index) argument [all...] |