Searched refs:MBIT (Results 1 - 15 of 15) sorted by relevance
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | mbinch.c | 61 if ((wc = RBYTE(*wp)) == MBIT) 65 if ((wc = LBYTE(*wp)|MBIT) == MBIT)
|
H A D | outch.c | 81 else if ((o = RBYTE(c)) != MBIT) { 83 if (_csmax > 1 && (((o = LBYTE(c))|MBIT) != MBIT)) {
|
H A D | winstr.c | 66 if ((wc = RBYTE(*ptr)) == MBIT) 70 if ((wc = LBYTE(*ptr) | MBIT) == MBIT)
|
H A D | winchnstr.c | 79 if ((wc = RBYTE(rawc)) == MBIT) 83 if ((wc = LBYTE(rawc) | MBIT) == MBIT)
|
H A D | winnstr.c | 76 if ((wc = RBYTE(*ptr)) == MBIT) 81 if ((wc = LBYTE(*ptr) | MBIT) == MBIT)
|
H A D | winnwstr.c | 68 if ((wc = RBYTE(*ptr)) == MBIT) 71 if ((wc = LBYTE(*ptr) | MBIT) == MBIT)
|
H A D | winwchnstr.c | 70 if ((wc = (int)RBYTE(rawc)) == MBIT) 74 if ((wc = (int)(LBYTE(rawc) | MBIT)) == MBIT)
|
H A D | winwstr.c | 60 if ((wc = RBYTE(*ptr)) == MBIT) 64 if ((wc = LBYTE(*ptr) | MBIT) == MBIT)
|
H A D | curshdr.h | 174 #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)
|
H A D | wbkgd.c | 75 nbkgdc = _CHAR((RBYTE(nbkgdc) << 8) | (LBYTE(nbkgdc)|MBIT)) |
|
H A D | mbaddch.c | 159 rc[nc++] = (char)(LBYTE(c)|MBIT); 233 *wcp++ = (CBIT|MBIT) | a;
|
H A D | wborder.c | 102 (LBYTE(variables[i])|MBIT)) | CBIT;
|
/illumos-gate/usr/src/cmd/backup/restore/ |
H A D | restore.h | 366 #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/cmd/backup/dump/ |
H A D | dump.h | 91 #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 D | usage.c | 37 #define MBIT 1000000 macro
|
Completed in 70 milliseconds