HomeSort by relevance Sort by last modified time
    Searched refs:mask (Results 1 - 25 of 5340) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
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...]
  /bionic/libc/bionic/
pause.cpp 37 kernel_sigset_t mask; local
38 if (__rt_sigprocmask(SIG_SETMASK, NULL, &mask, sizeof(mask)) == -1) {
41 return __rt_sigsuspend(&mask, sizeof(mask));
  /external/libpcap/Win32/Src/
ffs.c 44 ffs(mask)
45 register int mask;
49 if (mask == 0)
51 for (bit = 1; !(mask & 1); bit++)
52 mask >>= 1;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/32/bits/
ctype_base.h 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 = _ISupper;
51 static const mask lower = _ISlower;
52 static const mask alpha = _ISalpha;
53 static const mask digit = _ISdigit;
54 static const mask xdigit = _ISxdigit;
55 static const mask space = _ISspace;
56 static const mask print = _ISprint;
57 static const mask graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/bits/
ctype_base.h 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 = _ISupper;
51 static const mask lower = _ISlower;
52 static const mask alpha = _ISalpha;
53 static const mask digit = _ISdigit;
54 static const mask xdigit = _ISxdigit;
55 static const mask space = _ISspace;
56 static const mask print = _ISprint;
57 static const mask graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
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...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/libs/armeabi/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/libs/armeabi-v7a/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/libs/mips/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/libs/x86/include/bits/
ctype_base.h 42 // on the mask type. Because of this, we don't use an enum.
43 typedef char mask; typedef in struct:ctype_base
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X | _N;
49 static const mask space = _S;
50 static const mask print = _P | _U | _L | _N | _B;
51 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi/include/bits/
ctype_base.h 44 // on the mask type. Because of this, we don't use an enum.
45 typedef char mask; typedef in struct:ctype_base
46 static const mask upper = _U;
47 static const mask lower = _L;
48 static const mask alpha = _U | _L;
49 static const mask digit = _N;
50 static const mask xdigit = _X | _N;
51 static const mask space = _S;
52 static const mask print = _P | _U | _L | _N | _B;
53 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi-v7a/include/bits/
ctype_base.h 44 // on the mask type. Because of this, we don't use an enum.
45 typedef char mask; typedef in struct:ctype_base
46 static const mask upper = _U;
47 static const mask lower = _L;
48 static const mask alpha = _U | _L;
49 static const mask digit = _N;
50 static const mask xdigit = _X | _N;
51 static const mask space = _S;
52 static const mask print = _P | _U | _L | _N | _B;
53 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/mips/include/bits/
ctype_base.h 44 // on the mask type. Because of this, we don't use an enum.
45 typedef char mask; typedef in struct:ctype_base
46 static const mask upper = _U;
47 static const mask lower = _L;
48 static const mask alpha = _U | _L;
49 static const mask digit = _N;
50 static const mask xdigit = _X | _N;
51 static const mask space = _S;
52 static const mask print = _P | _U | _L | _N | _B;
53 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/x86/include/bits/
ctype_base.h 44 // on the mask type. Because of this, we don't use an enum.
45 typedef char mask; typedef in struct:ctype_base
46 static const mask upper = _U;
47 static const mask lower = _L;
48 static const mask alpha = _U | _L;
49 static const mask digit = _N;
50 static const mask xdigit = _X | _N;
51 static const mask space = _S;
52 static const mask print = _P | _U | _L | _N | _B;
53 static const mask graph = _P | _U | _L | _N
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/libs/armeabi/include/bits/
ctype_base.h 44 // on the mask type. Because of this, we don't use an enum.
45 typedef char mask; typedef in struct:ctype_base
46 static const mask upper = _U;
47 static const mask lower = _L;
48 static const mask alpha = _U | _L;
49 static const mask digit = _N;
50 static const mask xdigit = _X | _N;
51 static const mask space = _S;
52 static const mask print = _P | _U | _L | _N | _B;
53 static const mask graph = _P | _U | _L | _N
    [all...]

Completed in 1466 milliseconds

1 2 3 4 5 6 7 8 91011>>