Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_winsys.h12 #ifndef NV04_PFIFO_MAX_PACKET_LEN
13 #define NV04_PFIFO_MAX_PACKET_LEN 2047 macro
/third_party/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.c130 so->packet_vertex_limit = NV04_PFIFO_MAX_PACKET_LEN / in nv50_vertex_state_create()
513 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nv50_draw_elements_inline_u08()
537 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u16()
555 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv50_draw_elements_inline_u32()
578 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u32_short()
Dnv50_context.c120 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_emit_string_marker()
121 if (string_words == NV04_PFIFO_MAX_PACKET_LEN) in nv50_emit_string_marker()
Dnv50_transfer.c316 unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv50_sifc_linear_u8()
511 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_cb_bo_push()
Dnv50_compute.c232 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_compute_validate_constbufs()
Dnv50_shader_state.c71 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_constbufs_validate()
Dnv50_surface.c685 unsigned nr_data = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN) / data_words; in nv50_clear_buffer_push()
/third_party/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.c617 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nvc0_draw_elements_inline_u08()
643 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u16()
662 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_draw_elements_inline_u32()
687 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u32_short()
865 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.c169 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_emit_string_marker()
170 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()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_vbo.c312 so->vtx_per_packet_max = NV04_PFIFO_MAX_PACKET_LEN / MAX2(so->vtx_size, 1);
381 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
406 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
424 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
448 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()