Lines Matching refs:alloc
273 struct agx_bo *alloc = agxdecode_find_mapped_gpu_mem_containing(va);
274 assert(alloc != NULL && "nonexistant object");
275 fprintf(agxdecode_dump_stream, "%s (%" PRIx64 ", handle %u)\n", label, va, alloc->handle);
279 uint8_t *end = (uint8_t *) alloc->ptr.cpu + alloc->size;
282 agxdecode_dump_bo(alloc, label);
583 agxdecode_track_alloc(struct agx_bo *alloc)
589 bool match = (bo->handle == alloc->handle && bo->type == alloc->type);
590 assert(!match && "tried to alloc already allocated BO");
593 mmap_array[mmap_count++] = *alloc;