Home
last modified time | relevance | path

Searched refs:num_dwords (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/intel/blorp/
Dblorp_genX_exec.h314 const unsigned num_dwords = 1 + GENX(VERTEX_BUFFER_STATE_length) * 2; in blorp_emit_vertex_buffers() local
315 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_BUFFERS), num_dwords); in blorp_emit_vertex_buffers()
463 const unsigned num_dwords = in blorp_emit_vertex_elements() local
465 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_ELEMENTS), num_dwords); in blorp_emit_vertex_elements()
/external/mesa3d/src/intel/vulkan/
DgenX_pipeline.c113 const uint32_t num_dwords = 1 + total_elems * 2; in emit_vertex_input() local
114 p = anv_batch_emitn(&pipeline->batch, num_dwords, in emit_vertex_input()
118 memset(p + 1, 0, (num_dwords - 1) * 4); in emit_vertex_input()
883 const uint32_t num_dwords = GENX(BLEND_STATE_length) + local
886 anv_state_pool_alloc(&device->dynamic_state_pool, num_dwords * 4, 64);
DgenX_cmd_buffer.c2077 const uint32_t num_dwords = 1 + num_buffers * 4; in genX() local
2079 p = anv_batch_emitn(&cmd_buffer->batch, num_dwords, in genX()
2406 uint32_t num_dwords; in emit_mul_gpr0() local
2407 build_alu_multiply_gpr0(NULL, &num_dwords, N); in emit_mul_gpr0()
2409 uint32_t *dw = anv_batch_emitn(batch, 1 + num_dwords, GENX(MI_MATH)); in emit_mul_gpr0()
2410 build_alu_multiply_gpr0(dw + 1, &num_dwords, N); in emit_mul_gpr0()
Danv_batch_chain.c196 anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords) in anv_batch_emit_dwords() argument
198 if (batch->next + num_dwords * 4 > batch->end) { in anv_batch_emit_dwords()
208 batch->next += num_dwords * 4; in anv_batch_emit_dwords()
Danv_private.h1010 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_descriptors.c1746 unsigned num_dwords) in si_upload_bindless_descriptor() argument
1757 radeon_emit(cs, PKT3(PKT3_WRITE_DATA, 2 + num_dwords, 0)); in si_upload_bindless_descriptor()
1763 radeon_emit_array(cs, data, num_dwords); in si_upload_bindless_descriptor()