Searched refs:pg (Results 1 - 25 of 111) sorted by relevance

12345

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
H A Dzink_descriptors_lazy.c59 struct zink_program *pg[2]; //gfx, compute member in struct:zink_batch_descriptor_data_lazy
131 zink_descriptor_program_init_lazy(struct zink_context *ctx, struct zink_program *pg) argument
141 if (pg->is_compute)
142 stages = &((struct zink_compute_program*)pg)->shader;
144 stages = ((struct zink_gfx_program*)pg)->shaders;
146 if (!pg->dd)
147 pg->dd = (void*)rzalloc(pg, struct zink_program_descriptor_data);
148 if (!pg->dd)
151 if (!pg
308 zink_descriptor_program_deinit_lazy(struct zink_screen * screen,struct zink_program * pg) argument
340 check_pool_alloc(struct zink_context * ctx,struct zink_descriptor_pool * pool,struct hash_entry * he,struct zink_program * pg,enum zink_descriptor_type type,struct zink_batch_descriptor_data_lazy * bdd,bool is_compute) argument
401 get_descriptor_pool_lazy(struct zink_context * ctx,struct zink_program * pg,enum zink_descriptor_type type,struct zink_batch_descriptor_data_lazy * bdd,bool is_compute) argument
438 populate_sets(struct zink_context * ctx,struct zink_batch_descriptor_data_lazy * bdd,struct zink_program * pg,uint8_t * changed_sets,VkDescriptorSet * sets) argument
454 zink_descriptor_set_update_lazy(struct zink_context * ctx,struct zink_program * pg,enum zink_descriptor_type type,VkDescriptorSet set) argument
466 struct zink_program *pg = is_compute ? &ctx->curr_compute->base : &ctx->curr_program->base; local in function:zink_descriptors_update_lazy_masked
526 struct zink_program *pg = is_compute ? &ctx->curr_compute->base : &ctx->curr_program->base; local in function:zink_descriptors_update_lazy
[all...]
H A Dzink_descriptors.c97 pdd_cached(struct zink_program *pg) argument
99 return (struct zink_program_descriptor_data_cached*)pg->dd;
630 zink_descriptor_program_num_sizes(struct zink_program *pg, enum zink_descriptor_type type) argument
636 return !!pg->dd->sizes[ZDS_INDEX_COMBINED_SAMPLER].descriptorCount +
637 !!pg->dd->sizes[ZDS_INDEX_UNIFORM_TEXELS].descriptorCount;
641 return !!pg->dd->sizes[ZDS_INDEX_STORAGE_IMAGE].descriptorCount +
642 !!pg->dd->sizes[ZDS_INDEX_STORAGE_TEXELS].descriptorCount;
649 allocate_desc_set(struct zink_context *ctx, struct zink_program *pg, enum zink_descriptor_type type, unsigned descs_used, bool is_compute) argument
653 struct zink_descriptor_pool *pool = push_set ? ctx->dd->push_pool[is_compute] : pdd_cached(pg)->pool[type];
663 if (!zink_descriptor_util_alloc_sets(screen, push_set ? ctx->dd->push_dsl[is_compute]->layout : pg
766 struct zink_program *pg = is_compute ? (struct zink_program *)ctx->curr_compute : (struct zi local in function:zink_descriptor_set_get
991 create_descriptor_ref_template(struct zink_context * ctx,struct zink_program * pg,enum zink_descriptor_type type) argument
1051 zink_descriptor_program_init(struct zink_context * ctx,struct zink_program * pg) argument
1090 zink_descriptor_program_deinit(struct zink_screen * screen,struct zink_program * pg) argument
1230 struct zink_program *pg = is_compute ? &ctx->curr_compute->base : &ctx->curr_program->base; local in function:update_push_ubo_descriptors
1284 set_descriptor_set_refs(struct zink_context * ctx,struct zink_descriptor_set * zds,struct zink_program * pg,bool cache_hit) argument
1304 update_descriptors_internal(struct zink_context * ctx,enum zink_descriptor_type type,struct zink_descriptor_set * zds,struct zink_program * pg,bool cache_hit) argument
1403 struct zink_program *pg = is_compute ? (struct zink_program *)ctx->curr_compute : (struct zi local in function:zink_descriptors_update
1664 zink_context_update_descriptor_states(struct zink_context * ctx,struct zink_program * pg) argument
[all...]
H A Dzink_descriptors.h141 struct zink_program *pg[2]; //gfx, compute member in struct:zink_descriptor_data
198 zink_descriptor_program_num_sizes(struct zink_program *pg, enum zink_descriptor_type type);
240 zink_descriptor_program_init(struct zink_context *ctx, struct zink_program *pg);
243 zink_descriptor_program_deinit(struct zink_screen *screen, struct zink_program *pg);
274 zink_descriptor_program_init_lazy(struct zink_context *ctx, struct zink_program *pg);
277 zink_descriptor_program_deinit_lazy(struct zink_screen *screen, struct zink_program *pg);
300 zink_descriptor_set_update_lazy(struct zink_context *ctx, struct zink_program *pg, enum zink_descriptor_type type, VkDescriptorSet set);
H A Dzink_program.h192 zink_program_num_bindings_typed(const struct zink_program *pg, enum zink_descriptor_type type, bool is_compute);
195 zink_program_num_bindings(const struct zink_program *pg, bool is_compute);
271 zink_pipeline_layout_create(struct zink_screen *screen, struct zink_program *pg, uint32_t *compat);
282 zink_program_has_descriptors(const struct zink_program *pg) argument
284 return pg->num_dsl > 0;
H A Dzink_screen.h146 bool (*descriptor_program_init)(struct zink_context *ctx, struct zink_program *pg);
147 void (*descriptor_program_deinit)(struct zink_screen *screen, struct zink_program *pg);
261 zink_screen_update_pipeline_cache(struct zink_screen *screen, struct zink_program *pg);
264 zink_screen_get_pipeline_cache(struct zink_screen *screen, struct zink_program *pg);
H A Dzink_screen.c161 struct zink_program *pg = data; local in function:cache_put_job
164 if (VKSCR(GetPipelineCacheData)(screen->dev, pg->pipeline_cache, &size, NULL) != VK_SUCCESS)
166 if (pg->pipeline_cache_size == size)
171 if (VKSCR(GetPipelineCacheData)(screen->dev, pg->pipeline_cache, &size, pipeline_data) == VK_SUCCESS) {
172 pg->pipeline_cache_size = size;
175 disk_cache_compute_key(screen->disk_cache, pg->sha1, sizeof(pg->sha1), key);
181 zink_screen_update_pipeline_cache(struct zink_screen *screen, struct zink_program *pg) argument
183 util_queue_fence_init(&pg->cache_fence);
187 util_queue_add_job(&screen->cache_put_thread, pg, NUL
193 struct zink_program *pg = data; local in function:cache_get_job
212 zink_screen_get_pipeline_cache(struct zink_screen * screen,struct zink_program * pg) argument
[all...]
H A Dzink_batch.c85 struct zink_program *pg = (struct zink_program*)entry->key; local in function:zink_reset_batch_state
86 zink_batch_usage_unset(&pg->batch_uses, bs);
87 if (pg->is_compute) {
88 struct zink_compute_program *comp = (struct zink_compute_program*)pg;
91 struct zink_gfx_program *prog = (struct zink_gfx_program*)pg;
727 struct zink_program *pg)
729 if (zink_batch_usage_matches(pg->batch_uses, batch->state) ||
730 !batch_ptr_add_usage(batch, batch->state->programs, pg))
732 pipe_reference(NULL, &pg->reference);
733 zink_batch_usage_set(&pg
726 zink_batch_reference_program(struct zink_batch * batch,struct zink_program * pg) argument
[all...]
H A Dzink_program.c248 zink_pipeline_layout_create(struct zink_screen *screen, struct zink_program *pg, uint32_t *compat) argument
253 plci.pSetLayouts = pg->dsl;
254 plci.setLayoutCount = pg->num_dsl;
257 if (pg->is_compute) {
258 if (((struct zink_compute_program*)pg)->shader->nir->info.stage == MESA_SHADER_KERNEL) {
281 *compat = _mesa_hash_data(pg->dsl, pg->num_dsl * sizeof(pg->dsl[0]));
532 zink_program_num_bindings_typed(const struct zink_program *pg, enum zink_descriptor_type type, bool is_compute) argument
536 struct zink_compute_program *comp = (void*)pg;
548 zink_program_num_bindings(const struct zink_program * pg,bool is_compute) argument
[all...]
H A Dzink_batch.h168 struct zink_program *pg);
/xsrc/external/mit/mesa-demos/dist/src/glsl/
H A Dgsraytrace.cpp702 //GLint pg = gs.pgQuery->getQueryResult();
703 GLint pg; local in function:Draw
704 glGetQueryObjectiv(pgQuery, GL_QUERY_RESULT, &pg);
705 //pso_runtime_check(fpw == pg);
706 glDrawArrays(GL_POINTS, 0, pg);
/xsrc/external/mit/xterm/dist/
H A Dgraphics.c384 #define set_color_register(color_registers, color, pr, pg, pb) \
390 reg->g = (short) pg; \
/xsrc/external/mit/libXfontcache/dist/
H A Dltmain.sh1675 # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC
1679 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*)
/xsrc/external/mit/libxkbui/dist/
H A Dltmain.sh1623 # -pg pass through profiling flag for GCC
1625 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \
/xsrc/external/mit/xf86-video-imstt/dist/
H A Dltmain.sh1623 # -pg pass through profiling flag for GCC
1625 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \
/xsrc/external/mit/xf86-video-nsc/dist/
H A Dltmain.sh1653 # -pg pass through profiling flag for GCC
1655 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \
/xsrc/external/mit/xf86-input-ws/dist/
H A Dltmain.sh1676 # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC
1680 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*)
/xsrc/external/mit/libXTrap/dist/
H A Dltmain.sh5849 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
5856 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/xsrc/external/mit/libXevie/dist/
H A Dltmain.sh5090 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
5094 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*)
/xsrc/external/mit/libXfont/dist/
H A Dltmain.sh7269 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
7279 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/xsrc/external/mit/mesa-demos/dist/
H A Dltmain.sh7269 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
7279 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/xsrc/external/mit/glu/dist/
H A Dltmain.sh7327 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
7338 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/xsrc/external/mit/glw/dist/
H A Dltmain.sh5090 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
5094 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*)
/xsrc/external/mit/libXxf86misc/dist/
H A Dltmain.sh7269 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
7278 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/xsrc/external/mit/freetype/dist/builds/unix/
H A Dltmain.sh7269 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
7277 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/xsrc/external/mit/xf86-video-sis/dist/
H A Dltmain.sh7269 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
7279 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \

Completed in 107 milliseconds

12345