Searched refs:mask (Results 1 - 25 of 1780) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/config/os/generic/
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 = 1 << 0;
48 static const mask lower = 1 << 1;
49 static const mask alpha = 1 << 2;
50 static const mask digit = 1 << 3;
51 static const mask xdigit = 1 << 4;
52 static const mask space = 1 << 5;
53 static const mask print = 1 << 6;
54 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/solaris/solaris2.5/
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 = 01;
48 static const mask lower = 02;
49 static const mask alpha = 01 | 02;
50 static const mask digit = 04;
51 static const mask xdigit = 0200;
52 static const mask space = 010;
53 static const mask print = 020 | 01 | 02 | 04 | 0100;
54 static const mask grap
[all...]
/freebsd-11-stable/sys/mips/include/
H A Dfls64.h40 fls64(__uint64_t mask) argument
44 if (mask == 0)
46 for (bit = 1; ((mask & 0x1ULL) == 0); bit++)
47 mask = mask >> 1;
/freebsd-11-stable/contrib/libstdc++/config/os/bsd/darwin/
H A Dctype_base.h46 typedef unsigned long mask; typedef in struct:ctype_base
49 static const mask upper = _CTYPE_U;
50 static const mask lower = _CTYPE_L;
51 static const mask alpha = _CTYPE_A;
52 static const mask digit = _CTYPE_D;
53 static const mask xdigit = _CTYPE_X;
54 static const mask space = _CTYPE_S;
55 static const mask print = _CTYPE_R;
56 static const mask graph = _CTYPE_A | _CTYPE_D | _CTYPE_P;
57 static const mask cntr
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/bsd/freebsd/
H A Dctype_base.h48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned long mask; typedef in class:ctype_base
52 static const mask upper = _CTYPE_U;
53 static const mask lower = _CTYPE_L;
54 static const mask alpha = _CTYPE_A;
55 static const mask digit = _CTYPE_D;
56 static const mask xdigit = _CTYPE_X;
57 static const mask space = _CTYPE_S;
58 static const mask print = _CTYPE_R;
59 static const mask grap
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dffs.c42 ffs(int mask) argument
46 if (mask == 0)
48 for (bit = 1; !(mask & 1); bit++)
49 mask = (unsigned int)mask >> 1;
H A Dffsl.c39 ffsl(long mask) argument
43 if (mask == 0)
45 for (bit = 1; !(mask & 1); bit++)
46 mask = (unsigned long)mask >> 1;
H A Dffsll.c39 ffsll(long long mask) argument
43 if (mask == 0)
45 for (bit = 1; !(mask & 1); bit++)
46 mask = (unsigned long long)mask >> 1;
H A Dfls.c39 fls(int mask) argument
43 if (mask == 0)
45 for (bit = 1; mask != 1; bit++)
46 mask = (unsigned int)mask >> 1;
H A Dflsl.c39 flsl(long mask) argument
43 if (mask == 0)
45 for (bit = 1; mask != 1; bit++)
46 mask = (unsigned long)mask >> 1;
H A Dflsll.c39 flsll(long long mask) argument
43 if (mask == 0)
45 for (bit = 1; mask != 1; bit++)
46 mask = (unsigned long long)mask >> 1;
/freebsd-11-stable/sys/libkern/
H A Dffs.c39 ffs(int mask) argument
43 if (mask == 0)
45 for (bit = 1; !(mask & 1); bit++)
46 mask = (unsigned int)mask >> 1;
H A Dffsl.c39 ffsl(long mask) argument
43 if (mask == 0)
45 for (bit = 1; !(mask & 1); bit++)
46 mask = (unsigned long)mask >> 1;
H A Dffsll.c39 ffsll(long long mask) argument
43 if (mask == 0)
45 for (bit = 1; !(mask & 1); bit++)
46 mask = (unsigned long long)mask >> 1;
H A Dfls.c39 fls(int mask) argument
43 if (mask == 0)
45 for (bit = 1; mask != 1; bit++)
46 mask = (unsigned int)mask >> 1;
H A Dflsl.c39 flsl(long mask) argument
43 if (mask == 0)
45 for (bit = 1; mask != 1; bit++)
46 mask = (unsigned long)mask >> 1;
H A Dflsll.c38 flsll(long long mask) argument
42 if (mask == 0)
44 for (bit = 1; mask != 1; bit++)
45 mask = (unsigned long long)mask >> 1;
/freebsd-11-stable/contrib/libstdc++/config/os/aix/
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 = _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/bsd/netbsd/
H A Dctype_base.h48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned char mask; typedef in struct:ctype_base
50 static const mask upper = _U;
51 static const mask lower = _L;
52 static const mask alpha = _U | _L;
53 static const mask digit = _N;
54 static const mask xdigit = _N | _X;
55 static const mask space = _S;
56 static const mask print = _P | _U | _L | _N | _B;
57 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/djgpp/
H A Dctype_base.h39 typedef unsigned short mask; typedef in struct:ctype_base
45 // on the mask type. Because of this, we don't use an enum.
46 static const mask space = __dj_ISSPACE; // Whitespace
47 static const mask print = __dj_ISPRINT; // Printing
48 static const mask cntrl = __dj_ISCNTRL; // Control character
49 static const mask upper = __dj_ISUPPER; // UPPERCASE
50 static const mask lower = __dj_ISLOWER; // lowercase
51 static const mask alpha = __dj_ISALPHA; // Alphabetic
52 static const mask digit = __dj_ISDIGIT; // Numeric
53 static const mask punc
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/gnu-linux/
H A Dctype_base.h51 // on the mask type. Because of this, we don't use an enum.
52 typedef unsigned short mask; typedef in struct:ctype_base
53 static const mask upper = _ISupper;
54 static const mask lower = _ISlower;
55 static const mask alpha = _ISalpha;
56 static const mask digit = _ISdigit;
57 static const mask xdigit = _ISxdigit;
58 static const mask space = _ISspace;
59 static const mask print = _ISprint;
60 static const mask grap
[all...]
/freebsd-11-stable/contrib/libstdc++/config/os/hpux/
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 = _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/irix/irix5.2/
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 = _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/libstdc++/config/os/irix/irix6.5/
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 = _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/mingw32/
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 = _UPPER;
48 static const mask lower = _LOWER;
49 static const mask alpha = _ALPHA;
50 static const mask digit = _DIGIT;
51 static const mask xdigit = _HEX;
52 static const mask space = _SPACE;
53 static const mask print = (_BLANK | _PUNCT| _ALPHA | _DIGIT);
54 static const mask grap
[all...]

Completed in 179 milliseconds

1234567891011>>