Searched refs:mask (Results 26 - 50 of 1780) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/config/os/newlib/
H A Dctype_base.h47 // on the mask type. Because of this, we don't use an enum.
48 typedef char mask; typedef in struct:ctype_base
49 static const mask upper = _U;
50 static const mask lower = _L;
51 static const mask alpha = _U | _L;
52 static const mask digit = _N;
53 static const mask xdigit = _X | _N;
54 static const mask space = _S;
55 static const mask print = _P | _U | _L | _N | _B;
56 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/qnx/qnx6.1/
H A Dctype_base.h45 // on the mask type. Because of this, we don't use an enum.
46 typedef short mask; typedef in struct:ctype_base
47 static const mask upper = _UP;
48 static const mask lower = _LO;
49 static const mask alpha = _LO | _UP | _XA;
50 static const mask digit = _DI;
51 static const mask xdigit = _XD;
52 static const mask space = _CN | _SP | _XS;
53 static const mask print = _DI | _LO | _PU | _SP | _UP | _XA;
54 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/solaris/solaris2.6/
H A Dctype_base.h46 // on the mask type. Because of this, we don't use an enum.
47 typedef unsigned int mask; typedef in struct:ctype_base
48 static const mask upper = _ISUPPER;
49 static const mask lower = _ISLOWER;
50 static const mask alpha = _ISALPHA;
51 static const mask digit = _ISDIGIT;
52 static const mask xdigit = _ISXDIGIT;
53 static const mask space = _ISSPACE;
54 static const mask print = _ISPRINT;
55 static const mask grap
[all...]
H A Dctype_inline.h46 is(mask __m, char __c) const
51 is(const char* __low, const char* __high, mask* __vec) const
53 const int __bitmasksize = sizeof(mask) * 8;
56 mask __m = _M_table[static_cast<unsigned char>(*__low)];
58 while (__i < __bitmasksize && !(__m & static_cast<mask>(1 << __i)))
60 *__vec = static_cast<mask>(1 << __i);
67 scan_is(mask __m, const char* __low, const char* __high) const
77 scan_not(mask __m, const char* __low, const char* __high) const
/freebsd-11-stable/contrib/libstdc++/config/os/solaris/solaris2.7/
H A Dctype_base.h47 // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned int mask; typedef in struct:ctype_base
49 static const mask upper = _ISUPPER;
50 static const mask lower = _ISLOWER;
51 static const mask alpha = _ISALPHA;
52 static const mask digit = _ISDIGIT;
53 static const mask xdigit = _ISXDIGIT;
54 static const mask space = _ISSPACE;
55 static const mask print = _ISPRINT;
56 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/tpf/
H A Dctype_base.h45 // on the mask type. Because of this, we don't use an enum.
46 typedef unsigned short mask; typedef in struct:ctype_base
47 static const mask upper = _ISupper;
48 static const mask lower = _ISlower;
49 static const mask alpha = _ISalpha;
50 static const mask digit = _ISdigit;
51 static const mask xdigit = _ISxdigit;
52 static const mask space = _ISspace;
53 static const mask print = _ISprint;
54 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/uclibc/
H A Dctype_base.h53 // on the mask type. Because of this, we don't use an enum.
54 typedef __ctype_mask_t mask; typedef in struct:ctype_base
55 static const mask upper = _ISupper;
56 static const mask lower = _ISlower;
57 static const mask alpha = _ISalpha;
58 static const mask digit = _ISdigit;
59 static const mask xdigit = _ISxdigit;
60 static const mask space = _ISspace;
61 static const mask print = _ISprint;
62 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/vxworks/
H A Dctype_base.h45 // on the mask type. Because of this, we don't use an enum.
46 typedef unsigned char mask; typedef in struct:ctype_base
47 static const mask upper = _C_UPPER;
48 static const mask lower = _C_LOWER;
49 static const mask alpha = _C_UPPER | _C_LOWER;
50 static const mask digit = _C_NUMBER;
51 static const mask xdigit = _C_HEX_NUMBER;
52 static const mask space = _C_WHITE_SPACE | _C_CONTROL;
53 static const mask print = (_C_UPPER | _C_LOWER | _C_NUMBER
55 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/windiss/
H A Dctype_base.h45 // on the mask type. Because of this, we don't use an enum.
46 typedef unsigned int mask; typedef in struct:ctype_base
47 static const mask upper = _U;
48 static const mask lower = _L;
49 static const mask alpha = _U | _L;
50 static const mask digit = _N;
51 static const mask xdigit = _X;
52 static const mask space = _S;
53 static const mask print = _U | _L | _N | _P | _B;
54 static const mask grap
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dsigaction.c47 _nc_sigemptyset(sigset_t * mask) argument
49 *mask = 0;
54 _nc_sigprocmask(int mode, sigset_t * mask, sigset_t * omask) argument
62 current |= *mask;
64 current &= ~*mask;
66 current = *mask;
73 _nc_sigaddset(sigset_t * mask, int sig) argument
75 *mask |= sigmask(sig);
82 _nc_sigsuspend(sigset_t * mask)
84 return sigpause(*mask);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFlags.h29 /// Constructs this object with \a mask as the initial value for all of the
32 /// \param[in] mask
56 /// \param[in] mask
60 /// The new flags after clearing all bits from \a mask.
61 ValueType Clear(ValueType mask = ~static_cast<ValueType>(0)) {
62 m_flags &= ~mask;
66 /// Set one or more flags by logical OR'ing \a mask with the current flags.
68 /// \param[in] mask
72 /// The new flags after setting all bits from \a mask.
73 ValueType Set(ValueType mask) { argument
[all...]
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dntomask.c17 u_32_t mask; local
28 mask = 0;
30 mask = 0xffffffff;
31 mask <<= (32 - nbits);
33 *ap = htonl(mask);
H A Dprintmask.c15 printmask(family, mask)
17 u_32_t *mask;
23 PRINTF("/%d", count6bits(mask));
24 } else if ((ones = count4bits(*mask)) == -1) {
25 ipa.s_addr = *mask;
H A Dprinthostmask.c15 printhostmask(family, addr, mask)
17 u_32_t *addr, *mask;
25 if ((family == -1) || ((!addr || !*addr) && (!mask || !*mask)))
36 if (mask != NULL)
37 printmask(family, mask);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dsigact.c56 sigemptyset (sigset_t *mask) argument
58 if (!mask) {
62 *mask = 0;
67 sigprocmask (int mode, sigset_t *mask, sigset_t *omask) argument
71 if (!mask) {
80 current |= *mask;
82 current &= ~*mask;
84 current = *mask;
91 sigsuspend (sigset_t *mask) argument
93 if (!mask) {
101 sigdelset(sigset_t *mask, int sig) argument
112 sigaddset(sigset_t *mask, int sig) argument
123 sigismember(sigset_t *mask, int sig) argument
[all...]
H A Dopenssl-compat.c45 long mask, hfix, lfix; local
53 mask = 0xfffff00fL; /* major,minor,fix,status */
54 return (headerver & mask) == (libver & mask);
61 mask = 0xfff0000fL; /* major,minor,status */
64 if ( (headerver & mask) == (libver & mask) && lfix >= hfix)
/freebsd-11-stable/lib/libc/i386/sys/
H A Di386_set_watch.c40 unsigned int mask; local
43 for (i = 0, mask = 0x3; i < 4; i++, mask <<= 2)
44 if ((DBREG_DRX(d,7) & mask) == 0)
66 case 1 : mask = 0x00; break;
67 case 2 : mask = 0x01 << 2; break;
68 case 4 : mask = 0x03 << 2; break;
72 mask |= access;
81 DBREG_DRX(d,7) |= (0x2 << (watchnum*2)) | (mask << (watchnum*4+16));
/freebsd-11-stable/sys/dev/pms/freebsd/driver/common/
H A Dosdebug.h66 #define AG_ERROR_MSG(mask, val, format) \
68 if (mask) \
70 if (mask >= val) \
78 #define TIDEBUG_MSG(mask, val, format) \
80 if (mask) \
85 if (!(mask & 0x80000000)) \
87 if (mask >= val) \
92 if (mask & val) \
103 #define TIDEBUG_MSG(mask, val, format)
/freebsd-11-stable/contrib/libstdc++/config/os/aix/
H A Dctype_inline.h46 is(mask __m, char __c) const
47 { return __OBJ_DATA(__lc_ctype)->mask[__c] & __m; }
51 is(const char* __low, const char* __high, mask* __vec) const
54 *__vec++ = __OBJ_DATA(__lc_ctype)->mask[*__low++];
60 scan_is(mask __m, const char* __low, const char* __high) const
69 scan_not(mask __m, const char* __low, const char* __high) const
/freebsd-11-stable/lib/libc/arm/gen/
H A Dfpsetmask_vfp.c41 fpsetmask(fp_except_t mask)
46 mask = (mask & FP_X_MASK) << 8;
47 new = (old & ~(FP_X_MASK << 8)) | mask;
H A Dfpgetmask_vfp.c43 fp_except mask; local
45 __asm __volatile("vmrs %0, fpscr" : "=&r"(mask));
47 return ((mask >> 8) & FP_X_MASK);
/freebsd-11-stable/sys/sparc64/include/
H A Drunq.h47 ffs64(u_long mask) argument
51 if (mask == 0)
53 for (bit = 1; (mask & 1UL) == 0; bit++)
54 mask >>= 1UL;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.h30 static Log *GetLogIfAll(uint32_t mask) { return g_channel.GetLogIfAll(mask); } argument
31 static Log *GetLogIfAny(uint32_t mask) { return g_channel.GetLogIfAny(mask); } argument
/freebsd-11-stable/lib/libc/sparc64/gen/
H A Dfpsetmask.c13 fpsetmask(mask)
14 fp_except_t mask;
23 new |= FSR_TEM(mask & FSR_EXC_MASK);
/freebsd-11-stable/lib/libc/aarch64/gen/
H A Dfpgetmask.c41 uint64_t mask; local
43 /* Read the current mask */
44 __asm __volatile("mrs %0, fpcr" : "=&r"(mask));
46 return (mask & FP_X_MASK);

Completed in 233 milliseconds

1234567891011>>