Home
last modified time | relevance | path

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

/trueos/bin/pax/
HDcpio.c863 if (((u_short)SHRT_EXT(blk)) == MAGIC)
915 arcn->sb.st_dev = (dev_t)(SHRT_EXT(hd->h_dev));
916 arcn->sb.st_ino = (ino_t)(SHRT_EXT(hd->h_ino));
917 arcn->sb.st_mode = (mode_t)(SHRT_EXT(hd->h_mode));
918 arcn->sb.st_uid = (uid_t)(SHRT_EXT(hd->h_uid));
919 arcn->sb.st_gid = (gid_t)(SHRT_EXT(hd->h_gid));
920 arcn->sb.st_nlink = (nlink_t)(SHRT_EXT(hd->h_nlink));
921 arcn->sb.st_rdev = (dev_t)(SHRT_EXT(hd->h_rdev));
922 arcn->sb.st_mtime = (time_t)(SHRT_EXT(hd->h_mtime_1));
924 ((time_t)(SHRT_EXT(hd->h_mtime_2)));
[all …]
HDcpio.h107 #define SHRT_EXT(ch) ((((unsigned)(ch)[0])<<8) | (((unsigned)(ch)[1])&0xff)) macro