Searched defs:npush (Results 1 - 7 of 7) 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
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/grub/stage2/
H A Dtparm.c190 npush(int x) function
481 npush(param[i]);
523 npush(param[i]);
542 npush(static_vars[i]);
545 npush(dynamic_var[i]);
551 npush(*string);
562 npush(number);
566 npush(npop() + npop());
572 npush(x - y);
576 npush(npo
[all...]
/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/mesa3d/src/mesa/drivers/dri/nouveau/
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 108 milliseconds