Home
last modified time | relevance | path

Searched refs:NV04_PFIFO_MAX_PACKET_LEN (Results 1 – 14 of 14) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_winsys.h12 #ifndef NV04_PFIFO_MAX_PACKET_LEN
13 #define NV04_PFIFO_MAX_PACKET_LEN 2047 macro
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_winsys.h14 #ifndef NV04_PFIFO_MAX_PACKET_LEN
15 #define NV04_PFIFO_MAX_PACKET_LEN 2047 macro
Dnv50_vbo.c128 so->packet_vertex_limit = NV04_PFIFO_MAX_PACKET_LEN / in nv50_vertex_state_create()
510 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nv50_draw_elements_inline_u08()
534 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u16()
552 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv50_draw_elements_inline_u32()
575 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u32_short()
Dnv50_context.c102 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_emit_string_marker()
103 if (string_words == NV04_PFIFO_MAX_PACKET_LEN) in nv50_emit_string_marker()
Dnv50_transfer.c190 unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv50_sifc_linear_u8()
386 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_cb_bo_push()
Dnv50_shader_state.c71 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_constbufs_validate()
Dnv50_surface.c665 unsigned nr_data = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN) / data_words; in nv50_clear_buffer_push()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_winsys.h13 #ifndef NV04_PFIFO_MAX_PACKET_LEN
14 #define NV04_PFIFO_MAX_PACKET_LEN 2047 macro
Dnvc0_vbo.c616 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nvc0_draw_elements_inline_u08()
642 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u16()
661 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_draw_elements_inline_u32()
686 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u32_short()
861 draws = MIN2(draws, (NV04_PFIFO_MAX_PACKET_LEN - 4) / size); in nvc0_draw_indirect()
Dnvc0_transfer.c213 unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_m2mf_push_linear()
255 unsigned nr = MIN2(count, (NV04_PFIFO_MAX_PACKET_LEN - 1)); in nve4_p2mf_push_linear()
598 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN - 1); in nvc0_cb_bo_push()
Dnvc0_context.c122 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_emit_string_marker()
123 if (string_words == NV04_PFIFO_MAX_PACKET_LEN) in nvc0_emit_string_marker()
Dnvc0_surface.c388 unsigned nr_data = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN) / data_words; in nvc0_clear_buffer_push_nvc0()
437 unsigned nr_data = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN) / data_words; in nvc0_clear_buffer_push_nve4()
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_vbo.c311 so->vtx_per_packet_max = NV04_PFIFO_MAX_PACKET_LEN / MAX2(so->vtx_size, 1);
380 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
405 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
423 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
447 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
Dnv30_draw.c150 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv30_render_draw_elements()