HomeSort by: relevance | last modified time | path
    Searched refs:mask (Results 1 - 25 of 4834) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/
ctype_base.h 42 // 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 graph = (1 << 2) | (1 << 3) | (1 << 9); // alnum|punc
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/generic/
ctype_base.h 42 // 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 graph = (1 << 2) | (1 << 3) | (1 << 9); // alnum|punc
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned short mask; typedef in struct:ctype_base
50 static const mask upper = 1 << 0;
51 static const mask lower = 1 << 1;
52 static const mask alpha = 1 << 2;
53 static const mask digit = 1 << 3;
54 static const mask xdigit = 1 << 4;
55 static const mask space = 1 << 5;
56 static const mask print = 1 << 6
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32-w64/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned short mask; typedef in struct:ctype_base
50 static const mask upper = 1 << 0;
51 static const mask lower = 1 << 1;
52 static const mask alpha = 1 << 2;
53 static const mask digit = 1 << 3;
54 static const mask xdigit = 1 << 4;
55 static const mask space = 1 << 5;
56 static const mask print = 1 << 6
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned short mask; typedef in struct:ctype_base
50 static const mask upper = 1 << 0;
51 static const mask lower = 1 << 1;
52 static const mask alpha = 1 << 2;
53 static const mask digit = 1 << 3;
54 static const mask xdigit = 1 << 4;
55 static const mask space = 1 << 5;
56 static const mask print = 1 << 6
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32-w64/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned short mask; typedef in struct:ctype_base
50 static const mask upper = 1 << 0;
51 static const mask lower = 1 << 1;
52 static const mask alpha = 1 << 2;
53 static const mask digit = 1 << 3;
54 static const mask xdigit = 1 << 4;
55 static const mask space = 1 << 5;
56 static const mask print = 1 << 6
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
bits.h 15 static really_inline uint64_t trailing_zeroes(uint64_t mask)
18 if (_BitScanForward64(&index, mask))
24 static really_inline uint64_t leading_zeroes(uint64_t mask)
27 if (_BitScanReverse64(&index, mask))
35 static really_inline uint64_t trailing_zeroes(uint64_t mask)
38 return (uint64_t)__builtin_ctzll(mask);
54 return magictable[((mask ^ (mask - 1)) * magic) >> 58];
58 static really_inline uint64_t leading_zeroes(uint64_t mask)
61 return (uint64_t)__builtin_clzll(mask);
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/aix/
ctype_base.h 42 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/dragonfly/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned long mask; typedef in struct:ctype_base
44 static const mask upper = _CTYPE_U;
45 static const mask lower = _CTYPE_L;
46 static const mask alpha = _CTYPE_A;
47 static const mask digit = _CTYPE_D;
48 static const mask xdigit = _CTYPE_X;
49 static const mask space = _CTYPE_S;
50 static const mask print = _CTYPE_R;
51 static const mask graph = _CTYPE_A | _CTYPE_D | _CTYPE_P
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/netbsd/
ctype_base.h 45 // on the mask type. Because of this, we don't use an enum.
46 typedef unsigned short 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 graph = _CTYPE_G
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/djgpp/
ctype_base.h 36 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 punct = __dj_ISPUNCT; // Punctuatio
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/gnu-linux/
ctype_base.h 47 // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned short 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 graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/hpux/
ctype_base.h 42 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/solaris/
ctype_base.h 44 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/tpf/
ctype_base.h 42 // 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 graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/os/uclibc/
ctype_base.h 49 // on the mask type. Because of this, we don't use an enum.
50 typedef __ctype_mask_t mask; typedef in struct:ctype_base
51 static const mask upper = _ISupper;
52 static const mask lower = _ISlower;
53 static const mask alpha = _ISalpha;
54 static const mask digit = _ISdigit;
55 static const mask xdigit = _ISxdigit;
56 static const mask space = _ISspace;
57 static const mask print = _ISprint;
58 static const mask graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/aix/
ctype_base.h 42 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/dragonfly/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef unsigned long mask; typedef in struct:ctype_base
44 static const mask upper = _CTYPE_U;
45 static const mask lower = _CTYPE_L;
46 static const mask alpha = _CTYPE_A;
47 static const mask digit = _CTYPE_D;
48 static const mask xdigit = _CTYPE_X;
49 static const mask space = _CTYPE_S;
50 static const mask print = _CTYPE_R;
51 static const mask graph = _CTYPE_A | _CTYPE_D | _CTYPE_P
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/netbsd/
ctype_base.h 45 // on the mask type. Because of this, we don't use an enum.
46 typedef unsigned short 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 graph = _CTYPE_G
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/djgpp/
ctype_base.h 36 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 punct = __dj_ISPUNCT; // Punctuatio
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/gnu-linux/
ctype_base.h 47 // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned short 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 graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/hpux/
ctype_base.h 42 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/solaris/
ctype_base.h 44 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/solaris/solaris2.10/
ctype_base.h 44 // 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 graph = _ISALPHA | _ISDIGIT | _ISPUNCT
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/tpf/
ctype_base.h 42 // 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 graph = _ISalpha | _ISdigit | _ISpunct
    [all...]

Completed in 52 milliseconds

1 2 3 4 5 6 7 8 91011>>