| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/ |
| freedreno_resource.h | 91 * We need to track this to know which batch-cache entries to 98 void __fd_resource_tracking_destroy(struct fd_resource_tracking *track); 102 struct fd_resource_tracking *track) 106 if (pipe_reference(&(*ptr)->reference, &track->reference)) { 111 *ptr = track; 133 struct fd_resource_tracking *track; member in struct:fd_resource 147 * If so, it no longer "owns" it's rsc->track, and so should not 199 if (rsc->track->write_batch) 203 if (write && rsc->track->batch_mask) 371 return rsc->track->batch_mask & (1 << batch->idx) [all...] |
| freedreno_batch.c | 265 debug_assert(rsc->track->batch_mask & (1 << batch->idx)); 266 rsc->track->batch_mask &= ~(1 << batch->idx); 267 if (rsc->track->write_batch == batch) 268 fd_batch_reference_locked(&rsc->track->write_batch, NULL); 433 fd_batch_reference_locked(&b, rsc->track->write_batch); 454 rsc->track->batch_mask |= (1 << batch->idx); 469 if (rsc->track->write_batch == batch) 481 if (unlikely(rsc->track->batch_mask & ~(1 << batch->idx))) { 485 if (rsc->track->write_batch) 488 foreach_batch (dep, cache, rsc->track->batch_mask) [all...] |
| freedreno_batch_cache.c | 206 fd_batch_reference_locked(&write_batch, rsc->track->write_batch); 230 foreach_batch (batch, &ctx->screen->batch_cache, rsc->track->batch_mask) 300 rsc->track->bc_batch_mask &= ~(1 << batch->idx); 317 foreach_batch (batch, &screen->batch_cache, rsc->track->batch_mask) { 321 rsc->track->batch_mask = 0; 323 fd_batch_reference_locked(&rsc->track->write_batch, NULL); 326 foreach_batch (batch, &screen->batch_cache, rsc->track->bc_batch_mask) 329 rsc->track->bc_batch_mask = 0; 478 rsc->track->bc_batch_mask = (1 << batch->idx);
|
| freedreno_resource.c | 271 assert(dst->track->bc_batch_mask == 0); 272 assert(src->track->bc_batch_mask == 0); 273 assert(src->track->batch_mask == 0); 274 assert(src->track->write_batch == NULL); 294 fd_resource_tracking_reference(&dst->track, src->track); 383 foreach_batch (batch, &screen->batch_cache, rsc->track->bc_batch_mask) { 437 rsc->track, shadow, shadow->b.b.reference.count, shadow->track); 454 debug_assert(shadow->track->batch_mask == 0) [all...] |
| /xsrc/external/mit/freetype/dist/src/gxvalid/ |
| gxvtrak.c | 51 * referred track table format specification: 101 FT_Fixed track, t; local 117 track = FT_NEXT_LONG( p ); 132 if ( t == track ) 133 GXV_TRACE(( "duplicated entries found for track value 0x%x\n", 134 track ));
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/panfrost/ |
| pan_resource.h | 59 } track; member in struct:panfrost_resource
|
| pan_job.c | 132 rsrc->track.nr_writers--; 135 rsrc->track.nr_users--; 251 rsrc->track.nr_users++; 275 rsrc->track.nr_writers++;
|
| pan_resource.c | 569 /* Track the damage extent: the quad including all damage regions. Will 881 if ((usage & PIPE_MAP_READ) && (valid || rsrc->track.nr_writers > 0)) { 905 rsrc->track.nr_users > 0) { 924 if (rsrc->track.nr_users > 0 ||
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/decode/scripts/ |
| analyze.lua | 62 -- now, although it could potentially be interesting to track 81 -- track reg vals per draw: 84 -- also track which reg vals appear in which tests:
|
| tex3d-layout.lua | 105 local w = width0 -- track current width/height to detect changing
|
| parse-submits.lua | 183 -- Track the current mode: 269 -- Not completely legit. We could perhaps instead just track pitch and
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/ |
| radeon_common_context.c | 244 FILE *track; local 284 track = fopen("/tmp/tracklog", "w"); 285 if (track) { 286 radeon_tracker_print(&radeon->radeonScreen->bom->tracker, track); 287 fclose(track);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/ |
| radeon_common_context.c | 243 FILE *track; local 283 track = fopen("/tmp/tracklog", "w"); 284 if (track) { 285 radeon_tracker_print(&radeon->radeonScreen->bom->tracker, track); 286 fclose(track);
|
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| imgui_demo.cpp | 1940 static bool track = true; local 1942 ImGui::Checkbox("Track", &track); 1944 ImGui::SameLine(130); track |= ImGui::DragInt("##line", &track_line, 0.25f, 0, 99, "Line = %d"); 1948 if (scroll_to) track = false; 1960 if (track && line == track_line)
|