Home | History | Annotate | Download | only in netbsd32

Lines Matching defs:c64

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;
289 c64->iocs = c64->iocs;
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;
305 struct drm_client c64;
311 client32to64(&c64, &c32);
313 error = drm_ioctl(file, DRM_IOCTL_GET_CLIENT, &c64);
317 client64to32(&c32, &c64);