Lines Matching defs:exec
1160 struct qaic_execute_entry *exec, unsigned int count,
1164 struct qaic_partial_execute_entry *pexec = (struct qaic_partial_execute_entry *)exec;
1179 is_partial ? pexec[i].handle : exec[i].handle);
1262 struct qaic_execute_entry *exec, unsigned int count,
1265 struct qaic_partial_execute_entry *pexec = (struct qaic_partial_execute_entry *)exec;
1279 is_partial ? pexec[i].handle : exec[i].handle);
1295 struct qaic_execute_entry *exec;
1313 size = is_partial ? sizeof(struct qaic_partial_execute_entry) : sizeof(*exec);
1320 exec = kcalloc(args->hdr.count, size, GFP_KERNEL);
1321 if (!exec)
1324 if (copy_from_user(exec, user_data, n)) {
1367 ret = send_bo_list_to_device(qdev, file_priv, exec, args->hdr.count, is_partial, dbc,
1376 update_profiling_data(file_priv, exec, args->hdr.count, is_partial, received_ts,
1389 kfree(exec);