Searched refs:fsc (Results 1 - 25 of 31) sorted by relevance

12

/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Dflsc.c146 struct flsc_softc *fsc = device_private(self); local
147 struct ncr53c9x_softc *sc = &fsc->sc_ncr53c9x;
160 fsc->sc_dmabase = (volatile uint8_t *)zap->va;
161 fsc->sc_reg = &((volatile uint8_t *)zap->va)[0x1000001];
165 aprint_normal(": address %p", fsc->sc_reg);
196 fsc->sc_portbits = 0xa0 | FLSC_PB_EDI | FLSC_PB_ESI;
197 fsc->sc_hardbits = fsc->sc_reg[0x40];
199 fsc->sc_alignbuf = (uint8_t *)((u_long)fsc
232 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
240 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
289 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
318 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
327 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
356 register struct flsc_softc *fsc = (struct flsc_softc *)sc; local
486 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
629 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
647 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
660 struct flsc_softc *fsc = (struct flsc_softc *)sc; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/warn/
H A Doverflow-warn-1.C82 void fsc (signed char);
87 fsc (SCHAR_MAX + 1);
88 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
89 fsc (UCHAR_MAX);
90 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
H A Doverflow-warn-3.C88 void fsc (signed char);
93 fsc (SCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
94 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
95 fsc (UCHAR_MAX); /* { dg-warning "overflow in implicit constant conversion" } */
96 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
H A Doverflow-warn-4.C88 void fsc (signed char);
93 fsc (SCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
94 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
95 fsc (UCHAR_MAX); /* { dg-warning "overflow in implicit constant conversion" } */
96 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
H A DWconversion-integer.C9 void fsc (signed char sc);
27 fsc (ui); /* { dg-warning "conversion" } */
28 fsc (si); /* { dg-warning "conversion" } */
82 fsc (uc); /* Warned by -Wsign-conversion. */
H A DWsign-conversion.C9 void fsc (signed char sc);
27 fsc (ui);
28 fsc (si);
82 fsc (uc); /* { dg-warning "conversion" } */
H A DWconversion-real-integer.C76 void fsc (signed char x);
95 fsc (500.0); /* { dg-warning "conversion" } */
97 fsc (-500.0); /* { dg-warning "conversion" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Doverflow-warn-1.c82 void fsc (signed char);
87 fsc (SCHAR_MAX + 1);
88 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
89 fsc (UCHAR_MAX);
90 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
H A Doverflow-warn-2.c82 void fsc (signed char);
87 fsc (SCHAR_MAX + 1);
88 /* { dg-warning "passing argument 1 of 'fsc' with different width due to prototype" "-Wtraditional-conversion" { target *-*-* } 87 } */
89 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
90 /* { dg-warning "passing argument 1 of 'fsc' with different width due to prototype" "-Wtraditional-conversion" { target *-*-* } 89 } */
91 fsc (UCHAR_MAX);
92 /* { dg-warning "passing argument 1 of 'fsc' with different width due to prototype" "-Wtraditional-conversion" { target *-*-* } 91 } */
93 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
94 /* { dg-warning "passing argument 1 of 'fsc' with different width due to prototype" "-Wtraditional-conversion" { target *-*-* } 93 } */
H A Doverflow-warn-3.c89 void fsc (signed char);
94 fsc (SCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
95 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
96 fsc (UCHAR_MAX); /* { dg-warning "overflow in implicit constant conversion" } */
97 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
H A Doverflow-warn-4.c89 void fsc (signed char);
94 fsc (SCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
95 fsc (SCHAR_MIN - 1); /* { dg-warning "overflow in implicit constant conversion" } */
96 fsc (UCHAR_MAX); /* { dg-warning "overflow in implicit constant conversion" } */
97 fsc (UCHAR_MAX + 1); /* { dg-warning "overflow in implicit constant conversion" } */
H A DWtraditional-conversion-2.c7 void fsc(signed char);
18 void (*fsc)(signed char); member in struct:s
58 fsc(sll); /* { dg-warning "passing argument 1 of 'fsc' with different width due to prototype" } */
59 x.fsc(sll); /* { dg-warning "passing argument 1 of 'x.fsc' with different width due to prototype" } */
H A DWconversion-integer-no-sign.c9 void fsc (signed char sc);
27 fsc (ui); /* { dg-warning "conversion" } */
28 fsc (si); /* { dg-warning "conversion" } */
82 fsc (uc); /* Warned by -Wsign-conversion. */
H A DWconversion-integer.c9 void fsc (signed char sc);
27 fsc (ui); /* { dg-warning "conversion" } */
28 fsc (si); /* { dg-warning "conversion" } */
84 fsc (uc); /* { dg-warning "conversion" } */
H A DWsign-conversion.c9 void fsc (signed char sc);
27 fsc (ui);
28 fsc (si);
82 fsc (uc); /* { dg-warning "conversion" } */
H A DWconversion-real-integer.c77 void fsc (signed char x);
96 fsc (500.0); /* { dg-warning "conversion" } */
98 fsc (-500.0); /* { dg-warning "conversion" } */
H A Dutf-cvt.c11 extern void fsc (signed char);
29 fsc (c0); /* { dg-warning "alter its value" } */
45 fsc (c1); /* { dg-warning "alter its value" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Doverflow-warn-1.c79 void fsc (signed char);
84 fsc (SCHAR_MAX + 1);
85 fsc (SCHAR_MIN - 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
86 fsc (UCHAR_MAX);
87 fsc (UCHAR_MAX + 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
H A Doverflow-warn-2.c79 void fsc (signed char);
84 fsc (SCHAR_MAX + 1);
85 /* { dg-warning "warning: passing argument 1 of 'fsc' with different width due to prototype" "-Wconversion" { target *-*-* } 84 } */
86 fsc (SCHAR_MIN - 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
87 /* { dg-warning "warning: passing argument 1 of 'fsc' with different width due to prototype" "-Wconversion" { target *-*-* } 86 } */
88 fsc (UCHAR_MAX);
89 /* { dg-warning "warning: passing argument 1 of 'fsc' with different width due to prototype" "-Wconversion" { target *-*-* } 88 } */
90 fsc (UCHAR_MAX + 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
91 /* { dg-warning "warning: passing argument 1 of 'fsc' with different width due to prototype" "-Wconversion" { target *-*-* } 90 } */
H A Doverflow-warn-3.c86 void fsc (signed char);
91 fsc (SCHAR_MAX + 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
92 fsc (SCHAR_MIN - 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
93 fsc (UCHAR_MAX); /* { dg-warning "warning: overflow in implicit constant conversion" } */
94 fsc (UCHAR_MAX + 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
H A Doverflow-warn-4.c86 void fsc (signed char);
91 fsc (SCHAR_MAX + 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
92 fsc (SCHAR_MIN - 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
93 fsc (UCHAR_MAX); /* { dg-warning "warning: overflow in implicit constant conversion" } */
94 fsc (UCHAR_MAX + 1); /* { dg-warning "warning: overflow in implicit constant conversion" } */
H A DWconversion-2.c7 void fsc(signed char);
18 void (*fsc)(signed char); member in struct:s
58 fsc(sll); /* { dg-warning "warning: passing argument 1 of 'fsc' with different width due to prototype" } */
59 x.fsc(sll); /* { dg-warning "warning: passing argument 1 of 'x.fsc' with different width due to prototype" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/ext/
H A Dutf-cvt.C7 extern void fsc (signed char);
25 fsc (c0); /* { dg-warning "alter its value" } */
41 fsc (c1); /* { dg-warning "alter its value" } */
/netbsd-6-1-5-RELEASE/sys/dev/ieee1394/
H A Diec68113.h121 fsc:1, /* ID of a DIF block in each channel */ member in struct:dvdbc
125 fsc:1, /* ID of a DIF block in each channel */ member in struct:dvdbc
/netbsd-6-1-5-RELEASE/sys/arch/hp300/dev/
H A Dcom_frodo.c121 struct com_frodo_softc *fsc = device_private(self); local
122 struct com_softc *sc = &fsc->sc_com;

Completed in 328 milliseconds

12