Lines Matching full:npush
341 unsigned npush = (count > mpush) ? mpush : count;
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);
374 count -= npush;
376 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
377 while (npush--) {
398 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
399 count -= npush;
401 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
402 while (npush--) {
440 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);;
441 count -= npush;
443 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush);
444 while (npush--) {
487 unsigned npush = (count > mpush) ? mpush : count;
488 unsigned wpush = ((npush + 255) & ~255) >> 8;
490 count -= npush;
493 while (npush >= 256) {
496 npush -= 256;
499 if (npush)
500 PUSH_DATA (push, ((npush - 1) << 24) | start);