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

1234567891011>>

/haiku-buildtools/gcc/libstdc++-v3/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...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr33693.c5 unsigned long modify_field (unsigned long mask, long fieldval) argument
7 return (~fieldval & ~mask);
H A Dpr27363.c12 snd_mask_refine(struct snd_mask *mask) argument
16 old = *mask;
17 if (mask->bits[0]==0 && mask->bits[1]==0)
20 return old.bits[0] != mask->bits[0];
25 struct snd_mask mask; local
28 mask.bits[0] = 23;
29 mask.bits[1] = 42;
30 mask.bits[2] = 0;
31 mask
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Doptional_mask.f903 subroutine foo (vector, mask)
5 logical, optional :: mask(:) local in subroutine:foo
7 if (present(mask)) then
8 loc = maxloc(vector, mask)
H A Dpr47757-2.f905 logical :: mask(2,2) variable
9 mask = reshape([.true.,.true.,.false.,.true.],[2,2])
10 print *, iany(a16, dim=1, mask=mask)
11 print *, iall(a16, dim=1, mask=mask)
12 print *, iparity(a16, dim=1, mask=mask)
13 print *, iany(a16, dim=1, mask=mask2)
14 print *, iall(a16, dim=1, mask
[all...]
H A Dpr47757-1.f908 logical :: mask(2,2) variable
15 mask = reshape([.true.,.true.,.false.,.true.],[2,2])
16 print *, iany(a1, dim=1, mask=mask)
17 print *, iany(a2, dim=1, mask=mask)
18 print *, iany(a4, dim=1, mask=mask)
19 print *, iany(a8, dim=1, mask=mask)
[all...]
H A Dmaxval_maxloc_conformance_1.f9010 print *,minloc(a,mask=lo) ! { dg-error "Incompatible ranks" }
11 print *,maxloc(a,mask=lo) ! { dg-error "Incompatible ranks" }
12 print *,minval(a,mask=lo) ! { dg-error "Incompatible ranks" }
13 print *,maxval(a,mask=lo) ! { dg-error "Incompatible ranks" }
14 print *,sum(a,mask=lo) ! { dg-error "Incompatible ranks" }
15 print *,product(a,mask=lo) ! { dg-error "Incompatible ranks" }
16 print *,minloc(a,1,mask=lo) ! { dg-error "Incompatible ranks" }
17 print *,maxloc(a,1,mask=lo) ! { dg-error "Incompatible ranks" }
18 print *,minval(a,1,mask=lo) ! { dg-error "Incompatible ranks" }
19 print *,maxval(a,1,mask
[all...]
H A Dunpack_bounds_1.f907 logical, allocatable, dimension(:,:) :: mask variable in program:main
10 allocate (mask(2,2))
14 mask = reshape((/ .TRUE., .FALSE., .FALSE., .TRUE. /),(/2,2/))
15 res = unpack(vector, mask, 0)
H A Dunpack_bounds_2.f907 logical, allocatable, dimension(:,:) :: mask variable in program:main
10 allocate (mask(2,2))
14 mask = reshape((/ .TRUE., .TRUE., .FALSE., .TRUE. /),(/2,2/))
15 res = unpack(vector, mask, 0)
H A Dallocate_error_4.f908 integer(4), pointer :: mask(:) component in type:comm_mask
13 allocate( encode(1,1)%mask(1),encode(1,2)%mask(1))
14 deallocate( encode(1,1)%mask,encode(1,2)%mask)
15 allocate( encode(1,1)%mask(1),encode(1,1)%mask(1)) ! { dg-error "also appears at" }
H A Dzero_sized_3.f907 logical, allocatable :: mask(:) variable
11 allocate (mm(i), mask(i))
13 mask(:) = (mm == 0)
14 j = count (mask)
15 print *, pack (mm, mask)
16 if (size (pack (mm, mask)) /= j) call abort
17 deallocate (mm, mask)
/haiku-buildtools/gcc/libstdc++-v3/config/os/mingw32-w64/
H A Dctype_base.h32 // 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 prin
[all...]
/haiku-buildtools/gcc/libstdc++-v3/config/os/mingw32/
H A Dctype_base.h32 // 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 prin
[all...]
/haiku-buildtools/gcc/libstdc++-v3/config/os/haiku/
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...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Danddi3-opt.c7 unsigned long long mask = 0xffffffffull; local
8 return (X & mask) * (Y & mask);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20081101-1.c3 int mask; local
6 mask = -1;
8 mask = 0;
10 result = result & mask;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dssa-pre-28.c7 int mask; local
9 mask = -2;
11 mask = 0;
13 result = result & mask;
/haiku-buildtools/gcc/libstdc++-v3/config/os/uclibc/
H A Dctype_base.h49 // 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 grap
[all...]
/haiku-buildtools/gcc/libstdc++-v3/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...]
/haiku-buildtools/gcc/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_base.h42 // 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 grap
[all...]
/haiku-buildtools/gcc/libstdc++-v3/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...]
/haiku-buildtools/gcc/libstdc++-v3/config/os/gnu-linux/
H A Dctype_base.h47 // 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 grap
[all...]
/haiku-buildtools/gcc/libstdc++-v3/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...]
/haiku-buildtools/gcc/libstdc++-v3/config/os/solaris/solaris2.10/
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...]
/haiku-buildtools/gcc/libstdc++-v3/config/os/tpf/
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...]

Completed in 214 milliseconds

1234567891011>>