Searched refs:u8 (Results 1 - 25 of 135) sorted by relevance

123456

/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020904-1.c6 typedef unsigned char u8; typedef
8 u8 fun(u8 y)
10 u8 x=((u8)255)/y;
16 if (fun((u8)2) != 127)
H A D20080122-1.c5 typedef unsigned char u8; typedef
8 do_segfault(u8 in_buf[], const u8 out_buf[], const int len)
27 u8 outbuf[32] = "buffer ";
28 u8 inbuf[32] = "\f";
H A Dpr69447.c1 typedef unsigned char u8; typedef
7 foo(u8 u8_0, u16 u16_0, u64 u64_0, u8 u8_1, u16 u16_1, u64 u64_1, u64 u64_2, u8 u8_3, u64 u64_3)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A Dpr48622_0.c7 typedef unsigned int u8 __attribute__ ((mode (QI))); typedef
8 u8 ashift_qi_1 (u8);
10 u8
11 ashift_qi_0 (u8 n)
15 u8
16 ashift_qi_2 (u8 n)
20 u8
21 ashift_qi_3 (u8 n)
25 u8
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dutf8-2.c10 const char s0[] = u8"ab";
11 const char16_t s1[] = u8"ab"; /* { dg-error "from non-wide" } */
12 const char32_t s2[] = u8"ab"; /* { dg-error "from non-wide" } */
13 const wchar_t s3[] = u8"ab"; /* { dg-error "from non-wide" } */
15 const char t0[0] = u8"ab"; /* { dg-warning "chars is too long" } */
16 const char t1[1] = u8"ab"; /* { dg-warning "chars is too long" } */
17 const char t2[2] = u8"ab";
18 const char t3[3] = u8"ab";
19 const char t4[4] = u8"ab";
21 const char u0[0] = u8"\u216
[all...]
H A Dutf-dflt2.c1 /* If not gnu99, the u8 prefix should be parsed as separate tokens. */
5 const void *s0 = u8"a"; /* { dg-error "undeclared" "undeclared" } */
8 #define u8 "a" macro
10 const void *s1 = u8"a";
H A Dutf-badconcat2.c5 void *s0 = u8"a" "b";
6 void *s1 = "a" u8"b";
7 void *s2 = u8"a" u8"b";
8 void *s3 = u8"a" u"b"; /* { dg-error "non-standard concatenation" } */
9 void *s4 = u"a" u8"b"; /* { dg-error "non-standard concatenation" } */
10 void *s5 = u8"a" U"b"; /* { dg-error "non-standard concatenation" } */
11 void *s6 = U"a" u8"b"; /* { dg-error "non-standard concatenation" } */
12 void *s7 = u8"a" L"b"; /* { dg-error "non-standard concatenation" } */
13 void *s8 = L"a" u8"
[all...]
H A Dc11-uni-string-2.c5 const void *p1 = L"a" u8"b"; /* { dg-error "concatenation" } */
6 const void *p2 = L"a" "b" u8"c"; /* { dg-error "concatenation" } */
7 const void *p3 = u8"a" L"b"; /* { dg-error "concatenation" } */
8 const void *p4 = u8"a" "b" L"c"; /* { dg-error "concatenation" } */
H A Dutf8-1.c7 const char *str3 = u8"h\u00e1\U0000010Dky ";
8 const char *str4 = u8"\u010d\u00E1rky\n";
10 const char *str6 = u8"h\u00e1\U0000010Dky " "\u010d\u00E1rky\n";
11 const char *str7 = "h\u00e1\U0000010Dky " u8"\u010d\u00E1rky\n";
12 #define u8 macro
13 const char *str8 = u8"h\u00e1\U0000010Dky " u8"\u010d\u00E1rky\n";
36 if (sizeof ("a" u8"b"[0]) != 1
37 || sizeof (u8"a" "b"[0]) != 1
38 || sizeof (u8"
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dutf8-2.C4 const char s0[] = u8"ab";
5 const char16_t s1[] = u8"ab"; // { dg-error "from non-wide" }
6 const char32_t s2[] = u8"ab"; // { dg-error "from non-wide" }
7 const wchar_t s3[] = u8"ab"; // { dg-error "from non-wide" }
9 const char t0[0] = u8"ab"; // { dg-error "chars is too long" }
10 const char t1[1] = u8"ab"; // { dg-error "chars is too long" }
11 const char t2[2] = u8"ab"; // { dg-error "chars is too long" }
12 const char t3[3] = u8"ab";
13 const char t4[4] = u8"ab";
15 const char u0[0] = u8"\u216
[all...]
H A Dutf-dflt2.C1 // In C++0x, the u8 prefix should be parsed as separate tokens.
5 const void *s0 = u8"a"; // { dg-error "was not declared" }
7 #define u8 "a" macro
9 const void *s1 = u8"a";
H A Dutf-badconcat2.C4 const void *s0 = u8"a" "b";
5 const void *s1 = "a" u8"b";
6 const void *s2 = u8"a" u8"b";
7 const void *s3 = u8"a" u"b"; // { dg-error "non-standard concatenation" }
8 const void *s4 = u"a" u8"b"; // { dg-error "non-standard concatenation" }
9 const void *s5 = u8"a" U"b"; // { dg-error "non-standard concatenation" }
10 const void *s6 = U"a" u8"b"; // { dg-error "non-standard concatenation" }
11 const void *s7 = u8"a" L"b"; // { dg-error "non-standard concatenation" }
12 const void *s8 = L"a" u8"
[all...]
H A Dutf8-1.C7 const char *str3 = u8"h\u00e1\U0000010Dky ";
8 const char *str4 = u8"\u010d\u00E1rky\n";
10 const char *str6 = u8"h\u00e1\U0000010Dky " "\u010d\u00E1rky\n";
11 const char *str7 = "h\u00e1\U0000010Dky " u8"\u010d\u00E1rky\n";
12 #define u8 macro
13 const char *str8 = u8"h\u00e1\U0000010Dky " u8"\u010d\u00E1rky\n";
36 if (sizeof ("a" u8"b"[0]) != 1
37 || sizeof (u8"a" "b"[0]) != 1
38 || sizeof (u8"
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Darray_constructor_12.f904 integer (kind = 8) :: i, l8, u8, step8 variable in program:main
9 u8 = l4 + 10_8
11 call test ((/ (i, i = l4, u8, step4) /), l4 + 0_8, u8, step4 + 0_8)
14 u8 = big * 20
16 call test ((/ (i, i = l8, u8, step8) /), l8, u8, step8)
18 u8 = big + 100
21 call test ((/ (i, i = u8, l8, step4) /), u8, l
[all...]
H A Dsms-1.f906 integer (kind = 8) :: i, l8, u8, step8 variable in program:main
10 u8 = big * 40 + 200
13 call test ((/ (i, i = u8, l4, step8) /), u8, l4 + 0_8, step8)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vmx/
H A D3c-02.c3 vector unsigned char u8; variable
7 u8 = vec_ld(1, (unsigned char *)p);
16 check(vec_all_eq((vector unsigned int) u8, value), "u8");
H A D3c-03.c3 vector unsigned char u8; variable
7 u8 = vec_ld(i, (unsigned char *)p);
16 check(vec_all_eq((vector unsigned int) u8, value), "u8");
H A D3c-01a.c129 vector unsigned char u8; variable
143 u8 = vec_lvsl(1,(const volatile unsigned int *)p);
144 u8 = vec_lvsl(1,(_1 *)p);
145 u8 = vec_lvsr(1,(const volatile unsigned int *)p);
146 u8 = vec_lvsr(1,(_1 *)p);
147 u8 = vec_lvsl(1,(const unsigned int *)p);
148 u8 = vec_lvsl(1,(_2 *)p);
149 u8 = vec_lvsr(1,(const unsigned int *)p);
150 u8 = vec_lvsr(1,(_2 *)p);
165 u8
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dalias_bug.c6 typedef unsigned char u8; typedef
36 u8 dil, dih, edi2, edi3;
37 u8 sil, sih, esi2, esi3;
38 u8 bpl, bph, ebp2, ebp3;
39 u8 _spl, _sph, _esp2, _esp3;
40 u8 bl, bh, ebx2, ebx3;
41 u8 dl, dh, edx2, edx3;
42 u8 cl, ch, ecx2, ecx3;
43 u8 al, ah, eax2, eax3;
48 void intcall(u8 int_n
[all...]
H A Dpr59597.c5 typedef unsigned char u8; typedef
13 Calc_crc8 (u8 data, u16 crc)
15 u8 i=0,x16=0,carry=0;
18 x16 = (u8)((data & 1) ^ ((u8)crc & 1));
/haiku-buildtools/gcc/libgcc/config/arm/
H A Dunaligned-funcs.c31 struct __attribute__((packed)) u8 { long long data; }; struct
49 return ((struct u8 *) ptr)->data;
55 ((struct u8 *) ptr)->data = data;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp1y/
H A Dudlit-empty-string-neg.C20 operator u8"*"_u8s(unsigned long long) // { dg-error "expected empty string after 'operator'" }
H A Dudlit-enc-prefix-neg.C16 operator u8""_u8s(unsigned long long) // { dg-error "invalid encoding prefix in literal operator" }
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dinclude6.c9 #include u8"stddef.h" /* { dg-error "include expects" } */
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr39804.c5 typedef unsigned char u8; typedef
21 : "=r" (ret), "=q"(*(u8 *)to)

Completed in 114 milliseconds

123456