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

1234567891011>>

/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/generic/
H A Dctype_base.h42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned int mask; typedef in struct:ctype_base
44 static const mask upper = 1 << 0;
45 static const mask lower = 1 << 1;
46 static const mask alpha = 1 << 2;
47 static const mask digit = 1 << 3;
48 static const mask xdigit = 1 << 4;
49 static const mask space = 1 << 5;
50 static const mask print = 1 << 6;
51 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.5/
H A Dctype_base.h42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned char mask; typedef in struct:ctype_base
44 static const mask upper = 01;
45 static const mask lower = 02;
46 static const mask alpha = 01 | 02;
47 static const mask digit = 04;
48 static const mask xdigit = 0200;
49 static const mask space = 010;
50 static const mask print = 020 | 01 | 02 | 04 | 0100;
51 static const mask grap
[all...]
/openbsd-current/sys/lib/libkern/
H A Dfls.c37 fls(int mask) argument
41 if (mask == 0)
43 for (bit = 1; mask != 1; bit++)
44 mask = (unsigned int)mask >> 1;
H A Dflsl.c37 flsl(long mask) argument
41 if (mask == 0)
43 for (bit = 1; mask != 1; bit++)
44 mask = (unsigned long)mask >> 1;
/openbsd-current/regress/lib/libm/msun/
H A Dfls.c41 fls(int mask) argument
45 if (mask == 0)
47 for (bit = 1; mask != 1; bit++)
48 mask = (unsigned int)mask >> 1;
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/aix/
H A Dctype_base.h42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned int mask; typedef in struct:ctype_base
44 static const mask upper = _ISUPPER;
45 static const mask lower = _ISLOWER;
46 static const mask alpha = _ISALPHA;
47 static const mask digit = _ISDIGIT;
48 static const mask xdigit = _ISXDIGIT;
49 static const mask space = _ISSPACE;
50 static const mask print = _ISPRINT;
51 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/djgpp/
H A Dctype_base.h36 typedef unsigned short mask; typedef in struct:ctype_base
42 // on the mask type. Because of this, we don't use an enum.
43 static const mask space = __dj_ISSPACE; // Whitespace
44 static const mask print = __dj_ISPRINT; // Printing
45 static const mask cntrl = __dj_ISCNTRL; // Control character
46 static const mask upper = __dj_ISUPPER; // UPPERCASE
47 static const mask lower = __dj_ISLOWER; // lowercase
48 static const mask alpha = __dj_ISALPHA; // Alphabetic
49 static const mask digit = __dj_ISDIGIT; // Numeric
50 static const mask punc
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/gnu-linux/
H A Dctype_base.h42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned short mask; typedef in struct:ctype_base
44 static const mask upper = _ISupper;
45 static const mask lower = _ISlower;
46 static const mask alpha = _ISalpha;
47 static const mask digit = _ISdigit;
48 static const mask xdigit = _ISxdigit;
49 static const mask space = _ISspace;
50 static const mask print = _ISprint;
51 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/hpux/
H A Dctype_base.h42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned int mask; typedef in struct:ctype_base
44 static const mask upper = _ISUPPER;
45 static const mask lower = _ISLOWER;
46 static const mask alpha = _ISALPHA;
47 static const mask digit = _ISDIGIT;
48 static const mask xdigit = _ISXDIGIT;
49 static const mask space = _ISSPACE;
50 static const mask print = _ISPRINT;
51 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/irix/irix6.5/
H A Dctype_base.h42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned int mask; typedef in struct:ctype_base
44 static const mask upper = _ISupper;
45 static const mask lower = _ISlower;
46 static const mask alpha = _ISalpha;
47 static const mask digit = _ISdigit;
48 static const mask xdigit = _ISxdigit;
49 static const mask space = _ISspace;
50 static const mask print = _ISprint;
51 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.6/
H A Dctype_base.h43 // on the mask type. Because of this, we don't use an enum.
44 typedef unsigned int mask; typedef in struct:ctype_base
45 static const mask upper = _ISUPPER;
46 static const mask lower = _ISLOWER;
47 static const mask alpha = _ISALPHA;
48 static const mask digit = _ISDIGIT;
49 static const mask xdigit = _ISXDIGIT;
50 static const mask space = _ISSPACE;
51 static const mask print = _ISPRINT;
52 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.7/
H A Dctype_base.h44 // on the mask type. Because of this, we don't use an enum.
45 typedef unsigned int mask; typedef in struct:ctype_base
46 static const mask upper = _ISUPPER;
47 static const mask lower = _ISLOWER;
48 static const mask alpha = _ISALPHA;
49 static const mask digit = _ISDIGIT;
50 static const mask xdigit = _ISXDIGIT;
51 static const mask space = _ISSPACE;
52 static const mask print = _ISPRINT;
53 static const mask grap
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_base.h47 // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned long mask; typedef in struct:ctype_base
51 static const mask upper = _CTYPE_U;
52 static const mask lower = _CTYPE_L;
53 static const mask alpha = _CTYPE_A;
54 static const mask digit = _CTYPE_D;
55 static const mask xdigit = _CTYPE_X;
56 static const mask space = _CTYPE_S;
57 static const mask print = _CTYPE_R;
58 static const mask grap
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/bsd/freebsd/
H A Dctype_base.h44 // on the mask type. Because of this, we don't use an enum.
45 typedef unsigned long mask; typedef in struct:ctype_base
48 static const mask upper = _CTYPE_U;
49 static const mask lower = _CTYPE_L;
50 static const mask alpha = _CTYPE_A;
51 static const mask digit = _CTYPE_D;
52 static const mask xdigit = _CTYPE_X;
53 static const mask space = _CTYPE_S;
54 static const mask print = _CTYPE_R;
55 static const mask grap
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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...]
/openbsd-current/gnu/gcc/libstdc++-v3/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 329 milliseconds

1234567891011>>