Home
last modified time | relevance | path

Searched refs:O_MAXMIN (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/lib/libbc/libc/sys/common/
H A Ds5sysmacros.h37 #define O_MAXMIN 0xff /* SunOS 4.x max minor value */ macro
42 ((x)&L_MAXMIN) > O_MAXMIN) ? NODEV : \
43 ((((x)>>L_BITSMINOR)<<O_BITSMINOR)|((x)&O_MAXMIN)))
/titanic_50/usr/src/uts/common/sys/
H A Dsysmacros.h97 #define O_MAXMIN 0xff /* SVR3 max minor value */ macro
132 #define minor(x) (minor_t)((x) & O_MAXMIN)
146 #define minor(x) (minor_t)((x) & O_MAXMIN)
152 #define makedev(x, y) (unsigned short)(((x) << O_BITSMINOR) | ((y) & O_MAXMIN))
169 (minor_t)((x) & O_MAXMIN)
205 ((x) & L_MAXMIN) > O_MAXMIN) ? NODEV : \
206 ((((x) >> L_BITSMINOR) << O_BITSMINOR) | ((x) & O_MAXMIN)))
212 ((x) & O_MAXMIN))
/titanic_50/usr/src/uts/common/fs/ufs/
H A Dufs_inode.c957 if (dev32 & ~((O_MAXMAJ << L_BITSMINOR32) | O_MAXMIN)) { in ufs_iupdat()
H A Dufs_dir.c2130 if (dev32 & ~((O_MAXMAJ << L_BITSMINOR32) | O_MAXMIN)) { in ufs_dirmakeinode()