Home
last modified time | relevance | path

Searched refs:scratch_size (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/gallium/drivers/ilo/core/
Dilo_state_shader.h180 uint32_t scratch_size; member
185 uint32_t scratch_size; member
191 uint32_t scratch_size; member
196 uint32_t scratch_size; member
201 uint32_t scratch_size; member
226 return vs->scratch_size; in ilo_state_vs_get_scratch_size()
242 return hs->scratch_size; in ilo_state_hs_get_scratch_size()
257 return ds->scratch_size; in ilo_state_ds_get_scratch_size()
272 return gs->scratch_size; in ilo_state_gs_get_scratch_size()
292 return ps->scratch_size; in ilo_state_ps_get_scratch_size()
Dilo_state_compute.h78 uint32_t scratch_size; member
97 return compute->scratch_size; in ilo_state_compute_get_scratch_size()
Dilo_state_shader.c247 vs->scratch_size = ff.per_thread_scratch_size * thread_count; in vs_set_gen6_3DSTATE_VS()
328 hs->scratch_size = ff.per_thread_scratch_size * thread_count; in hs_set_gen7_3DSTATE_HS()
433 ds->scratch_size = ff.per_thread_scratch_size * thread_count; in ds_set_gen7_3DSTATE_DS()
574 gs->scratch_size = ff.per_thread_scratch_size * thread_count; in gs_set_gen6_3DSTATE_GS()
645 gs->scratch_size = ff.per_thread_scratch_size * thread_count; in gs_set_gen7_3DSTATE_GS()
Dilo_state_compute.c323 compute->scratch_size = per_thread_size * dev->thread_count; in compute_set_gen6_MEDIA_VFE_STATE()
Dilo_state_shader_ps.c703 ps->scratch_size = ff.per_thread_scratch_size * ff.thread_count; in ilo_state_ps_init()
/external/harfbuzz_ng/src/
Dhb-graphite2.cc252 unsigned int scratch_size; in _hb_graphite2_shape() local
253 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_graphite2_shape()
285 scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_graphite2_shape()
287 DIV_CEIL (sizeof (hb_codepoint_t) * glyph_count, sizeof (*scratch))) > scratch_size) in _hb_graphite2_shape()
295 scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_graphite2_shape()
302 assert (_consumed <= scratch_size); \ in _hb_graphite2_shape()
304 scratch_size -= _consumed; \ in _hb_graphite2_shape()
Dhb-coretext.cc712 unsigned int scratch_size; in _hb_coretext_shape() local
713 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_coretext_shape()
719 if (unlikely (_consumed > scratch_size)) \ in _hb_coretext_shape()
725 scratch_size -= _consumed; \ in _hb_coretext_shape()
789 scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_coretext_shape()
793 scratch_size -= old_scratch_used; in _hb_coretext_shape()
1047 unsigned int scratch_size_saved = scratch_size; \ in _hb_coretext_shape()
1051 scratch_size = scratch_size_saved; \ in _hb_coretext_shape()
Dhb-directwrite.cc562 unsigned int scratch_size; in _hb_directwrite_shape_full() local
563 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_directwrite_shape_full()
568 assert (_consumed <= scratch_size); \ in _hb_directwrite_shape_full()
570 scratch_size -= _consumed; \ in _hb_directwrite_shape_full()
700 unsigned int glyphs_size = (scratch_size * sizeof(int) - 2) in _hb_directwrite_shape_full()
Dhb-uniscribe.cc749 unsigned int scratch_size; in _hb_uniscribe_shape()
750 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size); in _hb_uniscribe_shape()
756 assert (_consumed <= scratch_size); \ in _hb_uniscribe_shape()
758 scratch_size -= _consumed; \ in _hb_uniscribe_shape()
799 unsigned int glyphs_size = (scratch_size * sizeof (int) - 2) in _hb_uniscribe_shape()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_cp_dma.c271 unsigned scratch_size = CP_DMA_ALIGNMENT * 2; in si_cp_dma_realign_engine() local
279 sctx->scratch_buffer->b.b.width0 < scratch_size) { in si_cp_dma_realign_engine()
283 PIPE_USAGE_DEFAULT, scratch_size); in si_cp_dma_realign_engine()
/external/mesa3d/src/gallium/drivers/ilo/
Dilo_shader.c128 int scratch_size, *cur_max; in ilo_shader_cache_upload() local
140 scratch_size = ilo_state_vs_get_scratch_size(&sh->cso.vs); in ilo_shader_cache_upload()
144 scratch_size = ilo_state_gs_get_scratch_size(&sh->cso.gs); in ilo_shader_cache_upload()
148 scratch_size = ilo_state_ps_get_scratch_size(&sh->cso.ps); in ilo_shader_cache_upload()
153 scratch_size = 0; in ilo_shader_cache_upload()
158 if (*cur_max < scratch_size) in ilo_shader_cache_upload()
159 *cur_max = scratch_size; in ilo_shader_cache_upload()
/external/mesa3d/src/intel/vulkan/
Danv_private.h1141 uint32_t scratch_size; member