Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/ilo/shader/
Dilo_shader_cs.c90 const int num_dwords = sizeof(microcode) / 4; in cs_compile() local
95 for (i = 0; i < num_dwords; i += 4) { in cs_compile()
Dilo_shader_vs.c768 const int num_dwords = sizeof(microcode) / 4; in vs_compile() local
773 for (i = 0; i < num_dwords; i += 4) { in vs_compile()
Dilo_shader_fs.c1405 const int num_dwords = sizeof(microcode) / 4; in fs_compile() local
1410 for (i = 0; i < num_dwords; i += 4) { in fs_compile()
/external/mesa3d/src/gallium/drivers/ilo/
Dilo_shader.c812 int num_dwords; in init_sol() local
814 num_dwords = so_info->output[i].dst_offset - buf_offsets[buffer]; in init_sol()
815 if (num_dwords > 4) in init_sol()
816 num_dwords = 4; in init_sol()
824 decl->component_count = num_dwords; in init_sol()
828 buf_offsets[buffer] += num_dwords; in init_sol()
/external/mesa3d/src/intel/blorp/
Dblorp_genX_exec.h275 const unsigned num_dwords = 1 + GENX(VERTEX_BUFFER_STATE_length) * 2; in blorp_emit_vertex_buffers() local
276 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_BUFFERS), num_dwords); in blorp_emit_vertex_buffers()
379 const unsigned num_dwords = in blorp_emit_vertex_elements() local
381 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_ELEMENTS), num_dwords); in blorp_emit_vertex_elements()
/external/mesa3d/src/intel/vulkan/
DgenX_pipeline.c123 const uint32_t num_dwords = 1 + total_elems * 2; in emit_vertex_input() local
124 p = anv_batch_emitn(&pipeline->batch, num_dwords, in emit_vertex_input()
126 memset(p + 1, 0, (num_dwords - 1) * 4); in emit_vertex_input()
726 const uint32_t num_dwords = GENX(BLEND_STATE_length); local
728 anv_state_pool_alloc(&device->dynamic_state_pool, num_dwords * 4, 64);
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()
203 batch->next += num_dwords * 4; in anv_batch_emit_dwords()
DgenX_cmd_buffer.c1471 const uint32_t num_dwords = 1 + num_buffers * 4; in genX() local
1473 p = anv_batch_emitn(&cmd_buffer->batch, num_dwords, in genX()
Danv_private.h691 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);