Home | History | Annotate | Download | only in nvc0

Lines Matching defs:nr

127       unsigned size, nr;
129 nr = push;
131 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
133 if (unlikely(ctx->edgeflag.buffer >= 0) && likely(nr))
136 size = ctx->vertex_words * nr;
140 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
147 count -= nr;
148 elts += nr;
150 if (nr != push) {
168 unsigned size, nr;
170 nr = push;
172 nr = prim_restart_search_i16(elts, push, ctx->restart_index);
174 if (unlikely(ctx->edgeflag.buffer >= 0) && likely(nr))
177 size = ctx->vertex_words * nr;
181 ctx->translate->run_elts16(ctx->translate, elts, nr, ctx->instance_id,
188 count -= nr;
189 elts += nr;
191 if (nr != push) {
209 unsigned size, nr;
211 nr = push;
213 nr = prim_restart_search_i32(elts, push, ctx->restart_index);
215 if (unlikely(ctx->edgeflag.buffer >= 0) && likely(nr))
218 size = ctx->vertex_words * nr;
222 ctx->translate->run_elts(ctx->translate, elts, nr, ctx->instance_id,
229 count -= nr;
230 elts += nr;
232 if (nr != push) {