| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/ |
| H A D | iris_program_cache.c | 91 return ((struct brw_vs_prog_key *) key)->program_string_id; 93 return ((struct brw_tcs_prog_key *) key)->program_string_id; 95 return ((struct brw_tes_prog_key *) key)->program_string_id; 97 return ((struct brw_gs_prog_key *) key)->program_string_id; 99 return ((struct brw_cs_prog_key *) key)->program_string_id; 101 return ((struct brw_wm_prog_key *) key)->program_string_id; 126 unsigned program_string_id) 131 get_program_string_id(cache_id, keybox->data) == program_string_id) { 124 iris_find_previous_compile(const struct iris_context * ice,enum iris_program_cache_id cache_id,unsigned program_string_id) argument
|
| H A D | iris_program.c | 50 #define KEY_INIT(gen) .program_string_id = ish->program_id, KEY_INIT_NO_ID(gen) 517 unsigned program_string_id, 532 iris_find_previous_compile(ice, info->stage, program_string_id); 599 iris_debug_recompile(ice, &nir->info, key->program_string_id, key); 793 iris_debug_recompile(ice, &nir->info, key->program_string_id, key); 825 .program_string_id = tcs ? tcs->program_id : 0, 891 iris_debug_recompile(ice, &nir->info, key->program_string_id, key); 992 iris_debug_recompile(ice, &nir->info, key->program_string_id, key); 1086 iris_debug_recompile(ice, &nir->info, key->program_string_id, key); 1346 iris_debug_recompile(ice, &nir->info, key->program_string_id, ke 515 iris_debug_recompile(struct iris_context * ice,struct shader_info * info,unsigned program_string_id,const void * key) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_program_cache.c | 101 return ((struct brw_vs_prog_key *) key)->program_string_id; 103 return ((struct brw_tcs_prog_key *) key)->program_string_id; 105 return ((struct brw_tes_prog_key *) key)->program_string_id; 107 return ((struct brw_gs_prog_key *) key)->program_string_id; 109 return ((struct brw_cs_prog_key *) key)->program_string_id; 111 return ((struct brw_wm_prog_key *) key)->program_string_id; 318 unsigned program_string_id) 323 get_program_string_id(cache_id, c->key) == program_string_id) { 316 brw_find_previous_compile(struct brw_cache * cache,enum brw_cache_id cache_id,unsigned program_string_id) argument
|
| H A D | brw_cs.c | 108 key->program_string_id, key); 149 key->program_string_id = cp->id; 181 cp->id = key.program_string_id; 193 key->program_string_id = brw_program(prog)->id;
|
| H A D | brw_gs.c | 108 key->program_string_id, key); 153 key->program_string_id = gp->id; 182 gp->id = key.program_string_id; 196 key->program_string_id = brw_program(prog)->id;
|
| H A D | brw_tes.c | 94 key->program_string_id, key); 135 key->program_string_id = tep->id; 180 tep->id = key.program_string_id; 196 key->program_string_id = btep->id;
|
| H A D | brw_disk_cache.c | 118 * lookup, so set the id to 0 for the sha1 hashing. program_string_id will 304 vs_key.program_string_id = 0; 315 tcs_key.program_string_id = 0; 326 tes_key.program_string_id = 0; 337 gs_key.program_string_id = 0; 348 wm_key.program_string_id = 0; 368 cs_key.program_string_id = 0;
|
| H A D | brw_tcs.c | 130 key->program_string_id, key); 194 key->program_string_id = tcp->id; 231 tcp->id = key.program_string_id; 249 key->program_string_id = btcp->id;
|
| H A D | brw_vs.c | 200 key->program_string_id, key); 255 key->program_string_id = vp->id; 314 vp->id = key.program_string_id; 330 key->program_string_id = bvp->id;
|
| H A D | brw_wm.c | 144 key->program_string_id, key); 492 key->program_string_id = fp->id; 519 fp->id = key.program_string_id; 559 key->program_string_id = brw_program(prog)->id;
|
| H A D | brw_program.c | 876 offsetof(struct brw_vs_prog_key, program_string_id), 877 offsetof(struct brw_tcs_prog_key, program_string_id), 878 offsetof(struct brw_tes_prog_key, program_string_id), 879 offsetof(struct brw_gs_prog_key, program_string_id), 880 offsetof(struct brw_wm_prog_key, program_string_id), 881 offsetof(struct brw_cs_prog_key, program_string_id),
|
| H A D | brw_state.h | 204 unsigned program_string_id);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_disk_cache.c | 118 * lookup, so set the id to 0 for the sha1 hashing. program_string_id will 121 prog_key.base.program_string_id = 0; 197 prog_key.base.program_string_id = brw_program(prog)->id; 314 vs_key.base.program_string_id = 0; 325 tcs_key.base.program_string_id = 0; 336 tes_key.base.program_string_id = 0; 347 gs_key.base.program_string_id = 0; 358 wm_key.base.program_string_id = 0; 382 cs_key.base.program_string_id = 0;
|
| H A D | brw_program_cache.c | 291 unsigned program_string_id) 296 c->key->program_string_id == program_string_id) { 289 brw_find_previous_compile(struct brw_cache * cache,enum brw_cache_id cache_id,unsigned program_string_id) argument
|
| H A D | brw_wm.c | 359 key->program_string_id = prog->id; 369 key->program_string_id = prog->id; 560 fp->id = key.base.program_string_id;
|
| H A D | brw_cs.c | 185 cp->id = key.base.program_string_id;
|
| H A D | brw_gs.c | 218 gp->id = key.base.program_string_id;
|
| H A D | brw_tes.c | 180 tep->id = key.base.program_string_id;
|
| H A D | brw_program_binary.c | 167 prog_key.base.program_string_id = brw_program(prog)->id;
|
| H A D | brw_state.h | 201 unsigned program_string_id);
|
| H A D | brw_tcs.c | 232 tcp->id = key.base.program_string_id;
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | brw_compiler.h | 227 unsigned program_string_id; member in struct:brw_vs_prog_key 272 unsigned program_string_id; member in struct:brw_tcs_prog_key 292 unsigned program_string_id; member in struct:brw_tes_prog_key 306 unsigned program_string_id; member in struct:brw_gs_prog_key 414 unsigned program_string_id; member in struct:brw_wm_prog_key 422 uint32_t program_string_id; member in struct:brw_cs_prog_key
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/ |
| H A D | crocus_program_cache.c | 101 unsigned program_string_id) 107 key->program_string_id == program_string_id) { 99 crocus_find_previous_compile(const struct crocus_context * ice,enum crocus_program_cache_id cache_id,unsigned program_string_id) argument
|
| H A D | crocus_disk_cache.c | 54 /* Create a copy of the program key with program_string_id zeroed out. 60 prog_key.base.program_string_id = 0;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/ |
| H A D | iris_disk_cache.c | 54 /* Create a copy of the program key with program_string_id zeroed out. 60 prog_key.base.program_string_id = 0;
|