Lines Matching refs:req
85 const struct agx_allocate_resource_req *req = inputStruct;
87 req2->mode = (req->mode & 0x800) | 0x430;
89 bool suballocated = req->mode & 0x800;
92 printf(" Mode: 0x%X%s\n", req->mode & ~0x800,
94 printf(" CPU fixed: 0x%" PRIx64 "\n", req->cpu_fixed);
95 printf(" CPU fixed (parent): 0x%" PRIx64 "\n", req->cpu_fixed_parent);
96 printf(" Size: 0x%X\n", req->size);
97 printf(" Flags: 0x%X\n", req->flags);
100 printf(" Parent: %u\n", req->parent);
102 assert(req->parent == 0);
105 for (unsigned i = 0; i < ARRAY_SIZE(req->unk0); ++i) {
106 if (req->unk0[i])
107 printf(" UNK%u: 0x%X\n", 0 + i, req->unk0[i]);
110 for (unsigned i = 0; i < ARRAY_SIZE(req->unk6); ++i) {
111 if (req->unk6[i])
112 printf(" UNK%u: 0x%X\n", 6 + i, req->unk6[i]);
115 if (req->unk17)
116 printf(" UNK17: 0x%X\n", req->unk17);
118 if (req->unk19)
119 printf(" UNK19: 0x%X\n", req->unk19);
121 for (unsigned i = 0; i < ARRAY_SIZE(req->unk21); ++i) {
122 if (req->unk21[i])
123 printf(" UNK%u: 0x%X\n", 21 + i, req->unk21[i]);
137 const struct agx_submit_cmdbuf_req *req = inputStruct;
139 agxdecode_cmdstream(req->command_buffer_shmem_id,
140 req->segment_list_shmem_id, true);
143 agxdecode_dump_mappings(req->segment_list_shmem_id);
203 const struct agx_allocate_resource_req *req = inputStruct;
205 if (resp->cpu && req->cpu_fixed)
206 assert(resp->cpu == req->cpu_fixed);
223 if (req->parent)