Home
last modified time | relevance | path

Searched refs:CHR_WR_2 (Results 1 – 2 of 2) sorted by relevance

/openbsd/bin/pax/
H A Dcpio.c993 hd->h_filesize_2[0] = CHR_WR_2(arcn->ln_nlen); in bcpio_wr()
1015 hd->h_magic[0] = CHR_WR_2(MAGIC); in bcpio_wr()
1017 hd->h_dev[0] = CHR_WR_2(arcn->sb.st_dev); in bcpio_wr()
1021 hd->h_ino[0] = CHR_WR_2(arcn->sb.st_ino); in bcpio_wr()
1025 hd->h_mode[0] = CHR_WR_2(arcn->sb.st_mode); in bcpio_wr()
1029 hd->h_uid[0] = CHR_WR_2(arcn->sb.st_uid); in bcpio_wr()
1033 hd->h_gid[0] = CHR_WR_2(arcn->sb.st_gid); in bcpio_wr()
1037 hd->h_nlink[0] = CHR_WR_2(arcn->sb.st_nlink); in bcpio_wr()
1041 hd->h_rdev[0] = CHR_WR_2(arcn->sb.st_rdev); in bcpio_wr()
1048 hd->h_mtime_2[0] = CHR_WR_2(arcn->sb.st_mtime); in bcpio_wr()
[all …]
H A Dcpio.h113 #define CHR_WR_2(val) ((char)(((val) >> 8) & 0xff)) macro