Searched defs:MBIT (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/backup/restore/
H A Drestore.h366 #define MBIT(i) (1<<((ino_t)((i)-1)%NBBY)) macro
367 #define BIS(i, w) (MWORD((w), (i)) |= MBIT(i))
368 #define BIC(i, w) (MWORD((w), (i)) &= ~MBIT(i))
369 #define BIT(i, w) (MWORD((w), (i)) & MBIT(i))
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dcurshdr.h174 #define MBIT 0200 /* indicator for a multi-byte char */ macro
178 #define ISMBIT(x) ((x) & MBIT)
179 #define SETMBIT(x) ((x) |= MBIT)
180 #define CLRMBIT(x) ((x) &= ~MBIT)
/illumos-gate/usr/src/cmd/backup/dump/
H A Ddump.h91 #define MBIT(i) ((1<<((ino_t)(i-1)%NBBY))&0xff) macro
92 #define BIS(i, w) (MWORD(w, i) |= MBIT(i))
93 #define BIC(i, w) (MWORD(w, i) &= ~MBIT(i))
94 #define BIT(i, w) (MWORD(w, i) & MBIT(i))
/illumos-gate/usr/src/lib/libdladm/common/
H A Dusage.c37 #define MBIT 1000000 macro

Completed in 95 milliseconds