Searched refs:uc (Results 1 - 25 of 333) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dstrcasecmp.c35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\01
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/
H A Dstrcasecmp.c35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\01
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dstrcasecmp.c35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\01
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dstrcasecmp.c35 typedef unsigned char uc; typedef
37 (uc)'\000',(uc)'\001',(uc)'\002',(uc)'\003',(uc)'\004',(uc)'\005',(uc)'\006',(uc)'\007',
38 (uc)'\01
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dcompare6.c7 unsigned char uc; variable
12 if (uc == 10000) return; /* { dg-warning "always false" "unsigned" } */
H A DWchar-subscripts-1.c10 unsigned char uc; variable
16 a[uc];
18 uc[a];
20 p[uc];
22 uc[p];
H A Dchar-compare.c10 unsigned char uc; member in struct:fbs
15 if ((fbs_ptr->uc != 255) && (fbs_ptr->uc != 0))
H A DWconversion-5.c6 unsigned char uc; variable
14 int a = uc & 0xff;
16 int c = 0xff & uc;
18 int e = uc & sc;
19 unsigned char f = (int) uc;
21 unsigned char h = (unsigned int) (short int) uc;
30 unsigned char b = (signed char) uc; /* { dg-warning "may change the sign" } */
32 unsigned char d = (int) (signed char) uc; /* { dg-warning "may change the sign" } */
H A DWconversion-integer-no-sign.c10 void fuc (unsigned char uc);
18 unsigned char uc = 3; local
21 uc = ui; /* { dg-warning "conversion" } */
22 uc = si; /* { dg-warning "conversion" } */
32 fsi (uc);
33 si = uc;
34 fui (uc);
35 ui = uc;
41 uc = 'A';
43 uc
[all...]
H A DWconversion-integer.c10 void fuc (unsigned char uc);
18 unsigned char uc = 3; local
21 uc = ui; /* { dg-warning "conversion" } */
22 uc = si; /* { dg-warning "conversion" } */
32 fsi (uc);
33 si = uc;
34 fui (uc);
35 ui = uc;
41 uc = 'A';
43 uc
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dcompare6.c7 unsigned char uc; variable
12 if (uc == 10000) return; /* { dg-warning "always false" "unsigned" } */
H A DWchar-subscripts-1.c10 unsigned char uc; variable
16 a[uc];
18 uc[a];
20 p[uc];
22 uc[p];
H A Dchar-compare.c10 unsigned char uc; member in struct:fbs
15 if ((fbs_ptr->uc != 255) && (fbs_ptr->uc != 0))
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Ducs4-utf8.h22 /* Return the length (number of units) of the UTF-8 representation of uc,
26 u8_uctomb_aux (unsigned char *s, unsigned int uc, int n) argument
30 if (uc < 0x80)
32 else if (uc < 0x800)
34 else if (uc < 0x10000)
37 else if (uc < 0x200000)
39 else if (uc < 0x4000000)
41 else if (uc <= 0x7fffffff)
44 else if (uc < 0x110000)
56 case 6: s[5] = 0x80 | (uc
68 u8_uctomb(unsigned char *s, unsigned int uc, int n) argument
[all...]
H A Ducs4-utf16.h22 /* Return the length (number of units) of the UTF-16 representation of uc,
26 u16_uctomb_aux (unsigned short *s, unsigned int uc, int n) argument
28 if (uc >= 0x10000)
30 if (uc < 0x110000)
34 s[0] = 0xd800 + ((uc - 0x10000) >> 10);
35 s[1] = 0xdc00 + ((uc - 0x10000) & 0x3ff);
46 u16_uctomb (unsigned short *s, unsigned int uc, int n) argument
48 if (uc < 0x10000 && n > 0)
50 s[0] = uc;
54 return u16_uctomb_aux (s, uc,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/fixed-point/
H A Dint-warning.c8 unsigned char uc; variable
18 uc = 500k; /* { dg-warning "overflow in implicit constant conversion" } */
19 uc = -500k; /* { dg-warning "overflow in implicit constant conversion" } */
20 uc = 500lk; /* { dg-warning "overflow in implicit constant conversion" } */
21 uc = -500lk; /* { dg-warning "overflow in implicit constant conversion" } */
22 uc = 500llk; /* { dg-warning "overflow in implicit constant conversion" } */
23 uc = -500llk; /* { dg-warning "overflow in implicit constant conversion" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/warn/
H A DWconversion3.C6 unsigned char uc; variable
14 int a = uc & 0xff;
16 int c = 0xff & uc;
18 int e = uc & sc;
19 unsigned char f = (int) uc;
21 unsigned char h = (unsigned int) (short int) uc;
30 unsigned char b = (signed char) uc; // { dg-warning "may change the sign" }
32 unsigned char d = (int) (signed char) uc; // { dg-warning "may change the sign" }
H A DWconversion-integer.C10 void fuc (unsigned char uc);
18 unsigned char uc = 3; local
21 uc = ui; /* { dg-warning "conversion" } */
22 uc = si; /* { dg-warning "conversion" } */
32 fsi (uc);
33 si = uc;
34 fui (uc);
35 ui = uc;
41 uc = 'A';
43 uc
[all...]
H A DWsign-conversion.C10 void fuc (unsigned char uc);
18 unsigned char uc = 3; local
21 uc = ui;
22 uc = si;
32 fsi (uc);
33 si = uc;
34 fui (uc);
35 ui = uc;
41 uc = 'A';
43 uc
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900220_02.C24 unsigned char uc = 0; local
28 overloaded (uc);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900220_02.C24 unsigned char uc = 0; local
28 overloaded (uc);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dsync-1.c9 unsigned char uc; variable
25 (void) __sync_fetch_and_add (&uc, 1);
36 (void) __sync_fetch_and_sub (&uc, 1);
47 (void) __sync_fetch_and_or (&uc, 1);
58 (void) __sync_fetch_and_xor (&uc, 1);
69 (void) __sync_fetch_and_and (&uc, 1);
80 (void) __sync_fetch_and_nand (&uc, 1);
94 uc = __sync_fetch_and_add (&uc, 11);
105 uc
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A Dsync-1.c6 unsigned char uc; variable
22 (void) __sync_fetch_and_add (&uc, 1);
33 (void) __sync_fetch_and_sub (&uc, 1);
44 (void) __sync_fetch_and_or (&uc, 1);
55 (void) __sync_fetch_and_xor (&uc, 1);
66 (void) __sync_fetch_and_and (&uc, 1);
77 (void) __sync_fetch_and_nand (&uc, 1);
91 uc = __sync_fetch_and_add (&uc, 11);
102 uc
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/arch/hppa/gen/
H A D__longjmp14.c51 ucontext_t uc; local
66 uc.uc_mcontext.__gregs[3] = regs[3];
67 uc.uc_mcontext.__gregs[4] = regs[4];
68 uc.uc_mcontext.__gregs[5] = regs[5];
69 uc.uc_mcontext.__gregs[6] = regs[6];
70 uc.uc_mcontext.__gregs[7] = regs[7];
71 uc.uc_mcontext.__gregs[8] = regs[8];
72 uc.uc_mcontext.__gregs[9] = regs[9];
73 uc.uc_mcontext.__gregs[10] = regs[10];
74 uc
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/arch/alpha/gen/
H A D__longjmp14.c49 ucontext_t uc; local
60 uc.uc_flags = _UC_SIGMASK | _UC_CPU;
63 uc.uc_link = 0;
66 uc.uc_mcontext.__gregs[_REG_V0] = val;
69 uc.uc_mcontext.__gregs[_REG_S0] = sc->sc_regs[R_S0];
70 uc.uc_mcontext.__gregs[_REG_S1] = sc->sc_regs[R_S1];
71 uc.uc_mcontext.__gregs[_REG_S2] = sc->sc_regs[R_S2];
72 uc.uc_mcontext.__gregs[_REG_S3] = sc->sc_regs[R_S3];
73 uc.uc_mcontext.__gregs[_REG_S4] = sc->sc_regs[R_S4];
74 uc
[all...]

Completed in 165 milliseconds

1234567891011>>