Searched refs:bits (Results 1 - 25 of 863) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A DWstrict-overflow-12.c12 int i, bits; local
13 for (i = 1, bits = 1; i > 0; i += i) /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */
14 ++bits;
15 return bits;
H A DWstrict-overflow-21.c7 int i, bits; local
8 for (i = 1, bits = 1; i > 0; i += i) /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */
9 ++bits;
10 return bits;
H A Dno-strict-overflow-6.c14 int i, bits; local
15 for (i = 1, bits = 1; i > 0; i += i)
16 ++bits;
17 return bits;
20 /* { dg-final { scan-tree-dump "return bits" "optimized" } } */
H A Dpr27363.c8 unsigned int bits[6]; member in struct:snd_mask
17 if (mask->bits[0]==0 && mask->bits[1]==0)
20 return old.bits[0] != mask->bits[0];
28 mask.bits[0] = 23;
29 mask.bits[1] = 42;
30 mask.bits[2] = 0;
31 mask.bits[3] = 0;
32 mask.bits[
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20120927-1.c4 unsigned int bits; local
6 bits = 0x00000021;
7 if ((access & bits) != 0)
10 access &= ~bits;
12 access &= ~bits;
13 bits <<= (10);
14 if ((access & bits) != 0)
15 access &= ~bits;
16 bits = 0x00000012;
17 if ((access & bits) !
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/conversion/
H A Dbitfield3.C5 struct bits { struct
7 } bits; local
10 bits.ui3 = 1u;
11 if( bits.ui3 < i )
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr64183.c4 int bits; variable
14 code |= ((unsigned int) (size >> (--bits)));
16 while (bits < (unsigned int)25)
17 bits += 8;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/17_intro/headers/c++1998/
H A Dall.cc20 #include <bits/extc++.h>
H A Dall_c++200x_compatibility.cc24 #include <bits/extc++.h>
H A Dall_pedantic_errors.cc21 #include <bits/extc++.h>
H A Dall_no_exceptions.cc21 #include <bits/extc++.h>
H A Dall_no_rtti.cc21 #include <bits/extc++.h>
H A Doperator_names.cc25 #include <bits/stdc++.h>
26 #include <bits/stdtr1c++.h>
27 #include <bits/extc++.h>
H A Dstdc++_assert_neg.cc30 #include <bits/stdc++.h>
/haiku-buildtools/gcc/libstdc++-v3/testsuite/17_intro/headers/c++200x/
H A D42319.cc22 #include <bits/char_traits.h>
H A Dall_pedantic_errors.cc21 #include <bits/extc++.h>
H A Dall_no_exceptions.cc21 #include <bits/extc++.h>
H A Dall_no_rtti.cc21 #include <bits/extc++.h>
H A Doperator_names.cc25 #include <bits/stdc++.h>
26 #include <bits/stdtr1c++.h>
27 #include <bits/extc++.h>
/haiku-buildtools/gcc/libstdc++-v3/include/parallel/
H A Dbasic_iterator.h36 #include <bits/c++config.h>
37 #include <bits/stl_iterator_base_types.h>
38 #include <bits/stl_iterator_base_funcs.h>
39 #include <bits/stl_iterator.h>
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dvolatile-bitfields-1.c11 volatile BitStruct bits; variable
15 return bits.b;
H A Dvolatile-bitfields-2.c11 BitStruct bits; variable
15 return bits.b;
H A Dvolatile-bitfields-3.c11 BitStruct bits; variable
15 return bits.c;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dvolatile-bitfields-1.c10 volatile BitStruct bits; variable
14 return bits.b;
17 /* { dg-final { scan-assembler "mov(b|zbl).*bits" } } */
H A Dvolatile-bitfields-2.c10 volatile BitStruct bits; variable
14 return bits.b;
17 /* { dg-final { scan-assembler "movl.*bits" } } */

Completed in 203 milliseconds

1234567891011>>