/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_vbo.c | 341 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...] |
nv30_draw.c | 145 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/ |
nv30_vbo.c | 341 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...] |
nv30_draw.c | 145 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/ |
nouveau_render_t.c | 59 int npush = n; \ 61 while (npush) { \ 62 int npack = MIN2(npush, MAX_PACKET * MAX_OUT_##out); \ 63 npush -= npack; \
|
nouveau_swtnl_t.c | 203 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/ |
nouveau_render_t.c | 59 int npush = n; \ 61 while (npush) { \ 62 int npack = MIN2(npush, MAX_PACKET * MAX_OUT_##out); \ 63 npush -= npack; \
|
nouveau_swtnl_t.c | 203 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/ |
tparm.c | 190 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(npop() * npop()) [all...] |