Searched refs:num_dwords (Results 1 – 9 of 9) sorted by relevance
/external/mesa3d/src/gallium/drivers/ilo/shader/ |
D | ilo_shader_cs.c | 90 const int num_dwords = sizeof(microcode) / 4; in cs_compile() local 95 for (i = 0; i < num_dwords; i += 4) { in cs_compile()
|
D | ilo_shader_vs.c | 768 const int num_dwords = sizeof(microcode) / 4; in vs_compile() local 773 for (i = 0; i < num_dwords; i += 4) { in vs_compile()
|
D | ilo_shader_fs.c | 1405 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/ |
D | ilo_shader.c | 812 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/ |
D | blorp_genX_exec.h | 275 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/ |
D | genX_pipeline.c | 123 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);
|
D | anv_batch_chain.c | 196 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()
|
D | genX_cmd_buffer.c | 1471 const uint32_t num_dwords = 1 + num_buffers * 4; in genX() local 1473 p = anv_batch_emitn(&cmd_buffer->batch, num_dwords, in genX()
|
D | anv_private.h | 691 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);
|