Home | History | Annotate | Download | only in radeon

Lines Matching full:relocs

80     uint32_t                    *relocs;
159 csg->base.relocs = csg->relocs = (uint32_t*)calloc(1, 4096);
160 if (csg->relocs == NULL) {
171 csg->chunks[1].chunk_data = (uint64_t)(uintptr_t)csg->relocs;
211 reloc = (struct cs_reloc_gem*)&csg->relocs[idx];
254 tmp = (uint32_t*)realloc(csg->relocs, size);
258 cs->relocs = csg->relocs = tmp;
260 csg->chunks[1].chunk_data = (uint64_t)(uintptr_t)csg->relocs;
264 reloc = (struct cs_reloc_gem*)&csg->relocs[idx];
360 /* dump relocs */
361 blob = bof_blob(csg->nrelocs * 16, csg->relocs);
470 free(cs->relocs);