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()
519 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nv50_draw_elements_inline_u08()
543 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u16()
561 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv50_draw_elements_inline_u32()
584 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u32_short()
Dnv50_context.c105 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN); in nv50_emit_string_marker()
106 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.c630 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nvc0_draw_elements_inline_u08()
656 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u16()
675 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_draw_elements_inline_u32()
700 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u32_short()
874 draws = MIN2(draws, (NV04_PFIFO_MAX_PACKET_LEN - 4) / size); in nvc0_draw_indirect()
Dnvc0_transfer.c189 unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_m2mf_push_linear()
231 unsigned nr = MIN2(count, (NV04_PFIFO_MAX_PACKET_LEN - 1)); in nve4_p2mf_push_linear()
571 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.c381 unsigned nr_data = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN) / data_words; in nvc0_clear_buffer_push_nvc0()
433 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.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()