Lines Matching refs:npush

341       unsigned npush  = (count > mpush) ? mpush : count;  in nv30_draw_arrays()  local
342 unsigned wpush = ((npush + 255) & ~255) >> 8; in nv30_draw_arrays()
344 count -= npush; in nv30_draw_arrays()
347 while (npush >= 256) { in nv30_draw_arrays()
350 npush -= 256; in nv30_draw_arrays()
353 if (npush) in nv30_draw_arrays()
354 PUSH_DATA (push, ((npush - 1) << 24) | start); in nv30_draw_arrays()
373 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv30_draw_elements_inline_u08() local
374 count -= npush; in nv30_draw_elements_inline_u08()
376 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush); in nv30_draw_elements_inline_u08()
377 while (npush--) { in nv30_draw_elements_inline_u08()
398 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv30_draw_elements_inline_u16() local
399 count -= npush; in nv30_draw_elements_inline_u16()
401 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush); in nv30_draw_elements_inline_u16()
402 while (npush--) { in nv30_draw_elements_inline_u16()
440 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);; in nv30_draw_elements_inline_u32_short() local
441 count -= npush; in nv30_draw_elements_inline_u32_short()
443 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush); in nv30_draw_elements_inline_u32_short()
444 while (npush--) { in nv30_draw_elements_inline_u32_short()
487 unsigned npush = (count > mpush) ? mpush : count; in nv30_draw_elements() local
488 unsigned wpush = ((npush + 255) & ~255) >> 8; in nv30_draw_elements()
490 count -= npush; in nv30_draw_elements()
493 while (npush >= 256) { in nv30_draw_elements()
496 npush -= 256; in nv30_draw_elements()
499 if (npush) in nv30_draw_elements()
500 PUSH_DATA (push, ((npush - 1) << 24) | start); in nv30_draw_elements()