Home
last modified time | relevance | path

Searched refs:last_bo (Results 1 – 15 of 15) sorted by relevance

/third_party/mesa3d/src/intel/tools/
Derror2aub.c297 struct bo *last_bo = NULL; in main() local
372 if (!last_bo || last_bo->type == BO_TYPE_UNKNOWN) in main()
375 int count = ascii85_decode(line+1, (uint32_t **) &last_bo->data, line[0] == ':'); in main()
377 last_bo->size = count * 4; in main()
411 last_bo = find_or_create(&bo_list, ((uint64_t) hi) << 32 | lo, in main()
418 if (last_bo->type == BO_TYPE_UNKNOWN) { in main()
419 last_bo->type = b->type; in main()
420 last_bo->name = b->match; in main()
/third_party/mesa3d/src/mesa/drivers/dri/i915/
Dintel_batchbuffer.c50 if (intel->batch.last_bo != NULL) { in intel_batchbuffer_reset()
51 drm_intel_bo_unreference(intel->batch.last_bo); in intel_batchbuffer_reset()
52 intel->batch.last_bo = NULL; in intel_batchbuffer_reset()
54 intel->batch.last_bo = intel->batch.bo; in intel_batchbuffer_reset()
67 drm_intel_bo_unreference(intel->batch.last_bo); in intel_batchbuffer_free()
Dintel_context.h102 drm_intel_bo *last_bo; member
Dintel_context.c376 if (intel->batch.last_bo) in intelFinish()
377 drm_intel_bo_wait_rendering(intel->batch.last_bo); in intelFinish()
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cs.c82 start_busy = (brw->batch.last_bo && in brw_codegen_cs_prog()
83 brw_bo_busy(brw->batch.last_bo)); in brw_codegen_cs_prog()
120 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_cs_prog()
Dbrw_gs.c127 start_busy = brw->batch.last_bo && brw_bo_busy(brw->batch.last_bo); in brw_codegen_gs_prog()
149 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_gs_prog()
Dbrw_tes.c70 start_busy = brw->batch.last_bo && brw_bo_busy(brw->batch.last_bo); in brw_codegen_tes_prog()
98 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_tes_prog()
Dbrw_vs.c170 start_busy = (brw->batch.last_bo && in brw_codegen_vs_prog()
171 brw_bo_busy(brw->batch.last_bo)); in brw_codegen_vs_prog()
215 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_vs_prog()
Dbrw_tcs.c107 start_busy = brw->batch.last_bo && brw_bo_busy(brw->batch.last_bo); in brw_codegen_tcs_prog()
137 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_tcs_prog()
Dbrw_wm.c109 start_busy = (brw->batch.last_bo && in brw_codegen_wm_prog()
110 brw_bo_busy(brw->batch.last_bo)); in brw_codegen_wm_prog()
159 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_wm_prog()
Dbrw_batch.c263 if (batch->last_bo != NULL) { in brw_batch_reset()
264 brw_bo_unreference(batch->last_bo); in brw_batch_reset()
265 batch->last_bo = NULL; in brw_batch_reset()
267 batch->last_bo = batch->batch.bo; in brw_batch_reset()
356 brw_bo_unreference(batch->last_bo); in brw_batch_free()
Dbrw_context.c338 if (brw->batch.last_bo) in brw_finish()
339 brw_bo_wait_rendering(brw->batch.last_bo); in brw_finish()
Dbrw_context.h482 struct brw_bo *last_bo; member
/third_party/mesa3d/src/gallium/drivers/panfrost/
Dpan_job.c77 batch->last_bo = INT32_MIN; in panfrost_batch_init()
117 for (int i = batch->first_bo; i <= batch->last_bo; i++) { in panfrost_batch_cleanup()
292 batch->last_bo = MAX2(batch->last_bo, bo->gem_handle); in panfrost_batch_add_bo_old()
593 for (int i = batch->first_bo; i <= batch->last_bo; i++) { in panfrost_batch_submit_ioctl()
Dpan_job.h83 int first_bo, last_bo; member