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()
520 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nv50_draw_elements_inline_u08()
544 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nv50_draw_elements_inline_u16()
562 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nv50_draw_elements_inline_u32()
585 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.c610 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 4) / 4; in nvc0_draw_elements_inline_u08()
636 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u16()
655 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_draw_elements_inline_u32()
680 unsigned i, nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN * 2) / 2; in nvc0_draw_elements_inline_u32_short()
855 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()
595 unsigned nr = MIN2(words, NV04_PFIFO_MAX_PACKET_LEN - 1); in nvc0_cb_bo_push()
Dnvc0_context.c119 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN); in nvc0_emit_string_marker()
120 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.c313 so->vtx_per_packet_max = NV04_PFIFO_MAX_PACKET_LEN / MAX2(so->vtx_size, 1);
382 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
407 unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
425 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);
449 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()