Home | History | Annotate | Download | only in netbsd32

Lines Matching defs:i32

617 info64to32(drm_agp_info32_t *i32, const struct drm_agp_info *i64)
619 i32->agp_version_major = i64->agp_version_major;
620 i32->agp_version_minor = i64->agp_version_minor;
621 i32->mode = i64->mode;
622 i32->aperture_base = i64->aperture_base;
623 i32->aperture_size = i64->aperture_size;
624 i32->memory_allowed = i64->memory_allowed;
625 i32->memory_used = i64->memory_used;
626 i32->id_vendor = i64->id_vendor;
627 i32->id_device = i64->id_device;
633 drm_agp_info32_t i32;
641 info64to32(&i32, &i64);
643 return copyout(arg, &i32, sizeof(i32));