HomeSort by relevance Sort by last modified time
    Searched refs:num_dwords (Results 1 - 9 of 9) sorted by null

  /external/mesa3d/src/gallium/drivers/ilo/shader/
ilo_shader_cs.c 90 const int num_dwords = sizeof(microcode) / 4; local
95 for (i = 0; i < num_dwords; i += 4) {
ilo_shader_vs.c 768 const int num_dwords = sizeof(microcode) / 4; local
773 for (i = 0; i < num_dwords; i += 4) {
    [all...]
ilo_shader_fs.c 1405 const int num_dwords = sizeof(microcode) \/ 4; local
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_shader.c 812 int num_dwords; local
814 num_dwords = so_info->output[i].dst_offset - buf_offsets[buffer];
815 if (num_dwords > 4)
816 num_dwords = 4;
824 decl->component_count = num_dwords;
828 buf_offsets[buffer] += num_dwords;
    [all...]
  /external/mesa3d/src/intel/blorp/
blorp_genX_exec.h 275 const unsigned num_dwords = 1 + GENX(VERTEX_BUFFER_STATE_length) * 2; local
276 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_BUFFERS), num_dwords);
379 const unsigned num_dwords = local
381 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_ELEMENTS), num_dwords);
    [all...]
  /external/mesa3d/src/intel/vulkan/
genX_pipeline.c 123 const uint32_t num_dwords = 1 + total_elems * 2; local
124 p = anv_batch_emitn(&pipeline->batch, num_dwords,
126 memset(p + 1, 0, (num_dwords - 1) * 4);
726 const uint32_t num_dwords = GENX(BLEND_STATE_length); local
728 anv_state_pool_alloc(&device->dynamic_state_pool, num_dwords * 4, 64);
    [all...]
anv_batch_chain.c 196 anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords)
198 if (batch->next + num_dwords * 4 > batch->end)
203 batch->next += num_dwords * 4;
    [all...]
genX_cmd_buffer.c 1471 const uint32_t num_dwords = 1 + num_buffers * 4; local
    [all...]
anv_private.h 691 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);
    [all...]

Completed in 131 milliseconds