Searched refs:npush (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_vbo.c341 unsigned npush = (count > mpush) ? mpush : count; local
342 unsigned wpush = ((npush + 255) & ~255) >> 8;
344 count -= npush;
347 while (npush >= 256) {
350 npush -= 256;
353 if (npush)
354 PUSH_DATA (push, ((npush - 1) << 24) | start);
373 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
374 count -= npush;
376 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
398 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
440 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);; local
487 unsigned npush = (count > mpush) ? mpush : count; local
[all...]
H A Dnv30_draw.c145 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
146 count -= npush;
148 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
149 while (npush--) {
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_vbo.c341 unsigned npush = (count > mpush) ? mpush : count; local
342 unsigned wpush = ((npush + 255) & ~255) >> 8;
344 count -= npush;
347 while (npush >= 256) {
350 npush -= 256;
353 if (npush)
354 PUSH_DATA (push, ((npush - 1) << 24) | start);
373 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
374 count -= npush;
376 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
398 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
440 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);; local
487 unsigned npush = (count > mpush) ? mpush : count; local
[all...]
H A Dnv30_draw.c145 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
146 count -= npush;
148 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
149 while (npush--) {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_render_t.c59 int npush = n; \
61 while (npush) { \
62 int npack = MIN2(npush, MAX_PACKET * MAX_OUT_##out); \
63 npush -= npack; \
H A Dnouveau_swtnl_t.c203 unsigned npush, start = 0, count = swtnl->vertex_count; local
209 npush = get_max_vertices(ctx, NULL, PUSH_AVAIL(push));
210 npush = MIN2(npush / 12 * 12, count);
211 count -= npush;
213 if (!npush) {
219 EMIT_VBO(L, ctx, start, 0, npush);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_render_t.c59 int npush = n; \
61 while (npush) { \
62 int npack = MIN2(npush, MAX_PACKET * MAX_OUT_##out); \
63 npush -= npack; \
H A Dnouveau_swtnl_t.c203 unsigned npush, start = 0, count = swtnl->vertex_count; local
209 npush = get_max_vertices(ctx, NULL, PUSH_AVAIL(push));
210 npush = MIN2(npush / 12 * 12, count);
211 count -= npush;
213 if (!npush) {
219 EMIT_VBO(L, ctx, start, 0, npush);

Completed in 145 milliseconds