Searched refs:u1 (Results 1 - 25 of 198) sorted by relevance

12345678

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr13066-1.C18 nsCOMPtr u1; local
19 if (!u1 == !u1)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dstruct-empty-1.c10 union u1 { int : 1; }; union
H A Dstruct-empty-2.c10 union u1 { int : 1; }; /* { dg-warning "union has no named members" } */ union
H A Dstruct-empty-3.c10 union u1 { int : 1; }; /* { dg-error "union has no named members" } */ union
H A Dc11-anon-struct-3.c26 union u1 union
H A Dpack-test-3.c10 struct u1 struct
36 typedef struct u1 __attribute__ ((packed)) u1_t1; /* { dg-warning "attribute ignored" "" }*/
37 typedef struct u1 u1_t2 __attribute__ ((packed)); /* { dg-warning "attribute ignored" "" }*/
/haiku-buildtools/binutils/libiberty/
H A Dstrncasecmp.c73 register unsigned char u1, u2; local
76 u1 = (unsigned char) *s1++;
78 if (charmap[u1] != charmap[u2]) {
79 return charmap[u1] - charmap[u2];
81 if (u1 == '\0') {
H A Dstrncmp.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/haiku-buildtools/gcc/libiberty/
H A Dstrncasecmp.c73 register unsigned char u1, u2; local
76 u1 = (unsigned char) *s1++;
78 if (charmap[u1] != charmap[u2]) {
79 return charmap[u1] - charmap[u2];
81 if (u1 == '\0') {
H A Dstrncmp.c22 register unsigned char u1, u2; local
26 u1 = (unsigned char) *s1++;
28 if (u1 != u2)
29 return u1 - u2;
30 if (u1 == '\0')
/haiku-buildtools/legacy/binutils/libiberty/
H A Dstrncasecmp.c73 register unsigned char u1, u2; local
76 u1 = (unsigned char) *s1++;
78 if (charmap[u1] != charmap[u2]) {
79 return charmap[u1] - charmap[u2];
81 if (u1 == '\0') {
H A Dstrncmp.c21 register unsigned char u1, u2; local
25 u1 = (unsigned char) *s1++;
27 if (u1 != u2)
28 return u1 - u2;
29 if (u1 == '\0')
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dpr16790-1.c5 static void test1(unsigned int u1) argument
11 y_final_1 = (unsigned int)( (signed short)(u1 * 2) * 3 );
12 y_middle = (signed short)(u1 * 2);
20 static void test2(unsigned int u1) argument
26 y_final_1 = (unsigned int)( (signed short)(u1 << 1) * 3 );
27 y_middle = (signed short)(u1 << 1);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Dbitfield1.C3 union u1 { union
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dwhole_file_1.f9019 integer :: u1 component in type:u
23 print *, q%u1
28 integer :: u1 component in type:u
31 p%u1 = 42
36 integer :: u1 component in type:u
40 print *, q%u1
46 integer :: u1 component in type:u
49 p%u1 = 42
55 integer :: u1 component in type:u
59 print *, q%u1
[all...]
/haiku-buildtools/legacy/gcc/libiberty/
H A Dstrncasecmp.c69 register unsigned char u1, u2; local
72 u1 = (unsigned char) *s1++;
74 if (charmap[u1] != charmap[u2]) {
75 return charmap[u1] - charmap[u2];
77 if (u1 == '\0') {
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900121_05.C22 union u1 { union
27 struct s1 : public u1 { /* { dg-error "base type" } */
H A D900107_01.C13 union u1 { int u1_member1; }; union
27 union u1 { // { dg-bogus "" } union
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr58553.c8 } u1, u2; variable in typeref:struct:__anon1408
19 u1.buf[i] = 'a';
24 if (u1.buf[MAX_LENGTH] != '\0')
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp14.c14 } u1; member in struct:tree_decl
24 align = decl.u1.a.align;
34 decl.u1.a.align = align;
36 return decl.u1.a.align;
43 decl.u1.a.align = 13;
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/dfp/
H A Dfunc-vararg-alternate.h91 union U u1, u2; local
109 u1.d = x; u2.d = a[0]; compare (0.0, 0.0, u1.i, u2.i, INTS, __LINE__);
112 u1.d = x; u2.d = a[0]; compare (0.0, 0.0, u1.i, u2.i, INTS, __LINE__);
113 u1.d = y; u2.d = a[1]; compare (0.0, 0.0, u1.i, u2.i, INTS, __LINE__);
116 u1.d = x; u2.d = a[0]; compare (0.0, 0.0, u1.i, u2.i, INTS, __LINE__);
117 u1
[all...]
/haiku-buildtools/gcc/gmp/mpn/generic/
H A Dgcdext_subdiv_step.c41 mp_ptr u0, mp_ptr u1, mp_size_t *unp,
80 MPN_NORMALIZE (u1, un);
81 MPN_COPY (up, u1, un);
93 MP_PTR_SWAP (u0, u1);
105 /* Must return the smallest cofactor, +u1 or -u0 */
106 MPN_CMP (c, u0, u1, un);
107 ASSERT (c != 0 || (un == 1 && u0[0] == 1 && u1[0] == 1));
117 MPN_NORMALIZE_NOT_ZERO (u1, un);
118 MPN_COPY (up, u1, un);
127 MP_PTR_SWAP (u0, u1);
39 mpn_gcdext_subdiv_step(mp_ptr gp, mp_size_t *gn, mp_ptr up, mp_size_t *usizep, mp_ptr ap, mp_ptr bp, mp_size_t n, mp_ptr u0, mp_ptr u1, mp_size_t *unp, mp_ptr qp, mp_ptr tp) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/
H A Dpr58346-1.c10 static struct U *u1, *u2; variable in typeref:struct:U
21 __PTRDIFF_TYPE__ d = u1 - u2; /* { dg-error "arithmetic on pointer to an empty aggregate" } */
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/x86_64/abi/avx512f/
H A Dtest_passing_unions.c46 check_union_passing1(union un1 u1 ATTRIBUTE_UNUSED,
60 check_union_passing2(union un2 u1 ATTRIBUTE_UNUSED,
74 check_union_passing3(union un3 u1 ATTRIBUTE_UNUSED,
106 check_union_passing6(union un6 u1 ATTRIBUTE_UNUSED,
129 union un1 u1[8]; local
138 u1[i].x = (__m512){32+i, 0, i, 0, -i, 0, i - 12, i + 8,
143 (&fregs.zmm0)[i]._m512[0] = u1[i].x;
145 check_union_passing1(u1[0], u1[1], u1[
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/aarch64/
H A Dpr68106.c35 U u1 = ((W) i << ((8 - 1) * 8)); local
40 w = ((W) u1) + ((W) s2);
41 if (upseu (u1, s2, &ovf) != (U) w || ovf != (w != (U) w))
43 w = ((W) u1) - ((W) u2);
44 if (usueu (u1, u2, &ovf) != (U) w || ovf != (w != (U) w))
46 w = ((W) u1) - ((W) s2);
47 if (usseu (u1, s2, &ovf) != (U) w || ovf != (w != (U) w))

Completed in 102 milliseconds

12345678