Lines Matching defs:c32

494 netbsd32_to_wsdisplay_cursor(struct netbsd32_wsdisplay_cursor *c32,
498 c->which = c32->which;
499 c->enable = c32->enable;
500 c->pos.x = c32->pos.x;
501 c->pos.y = c32->pos.y;
502 c->hot.x = c32->hot.x;
503 c->hot.y = c32->hot.y;
504 c->size.x = c32->size.x;
505 c->size.y = c32->size.y;
506 c->cmap.index = c32->cmap.index;
507 c->cmap.count = c32->cmap.count;
508 c->cmap.red = NETBSD32PTR64(c32->cmap.red);
509 c->cmap.green = NETBSD32PTR64(c32->cmap.green);
510 c->cmap.blue = NETBSD32PTR64(c32->cmap.blue);
511 c->image = NETBSD32PTR64(c32->image);
512 c->mask = NETBSD32PTR64(c32->mask);
516 netbsd32_to_wsdisplay_cmap(struct netbsd32_wsdisplay_cmap *c32,
520 c->index = c32->index;
521 c->count = c32->count;
522 c->red = NETBSD32PTR64(c32->red);
523 c->green = NETBSD32PTR64(c32->green);
524 c->blue = NETBSD32PTR64(c32->blue);
973 struct netbsd32_wsdisplay_cursor *c32, u_long cmd)
976 c32->which = c->which;
977 c32->enable = c->enable;
978 c32->pos.x = c->pos.x;
979 c32->pos.y = c->pos.y;
980 c32->hot.x = c->hot.x;
981 c32->hot.y = c->hot.y;
982 c32->size.x = c->size.x;
983 c32->size.y = c->size.y;
984 c32->cmap.index = c->cmap.index;
985 c32->cmap.count = c->cmap.count;
986 NETBSD32PTR32(c32->cmap.red, c->cmap.red);
987 NETBSD32PTR32(c32->cmap.green, c->cmap.green);
988 NETBSD32PTR32(c32->cmap.blue, c->cmap.blue);
989 NETBSD32PTR32(c32->image, c->image);
990 NETBSD32PTR32(c32->mask, c->mask);
995 struct netbsd32_wsdisplay_cmap *c32, u_long cmd)
998 c32->index = c->index;
999 c32->count = c->count;
1000 NETBSD32PTR32(c32->red, c->red);
1001 NETBSD32PTR32(c32->green, c->green);
1002 NETBSD32PTR32(c32->blue, c->blue);