Lines Matching defs:c32
283 client32to64(struct drm_client *c64, const drm_client32_t *c32)
285 c64->idx = c32->idx;
286 c64->auth = c32->auth;
287 c64->pid = c32->pid;
288 c64->uid = c32->uid;
293 client64to32(drm_client32_t *c32, const struct drm_client *c64)
295 c32->idx = c64->idx;
296 c32->auth = c64->auth;
297 c32->pid = c64->pid;
298 c32->uid = c64->uid;
299 c32->iocs = c64->iocs;
304 drm_client32_t c32;
308 if ((error = copyin(&c32, arg, sizeof(c32))) != 0)
311 client32to64(&c64, &c32);
317 client64to32(&c32, &c64);
319 return copyout(arg, &c32, sizeof(c32));