Searched refs:fp (Results 1 - 25 of 2254) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.jason/
H A Drfg13.C7 void (*fp)(void);
11 fp = g; /* { dg-error "" } no 'g' in scope */
H A Drfg20.C4 func_type *fp; variable
9 vp != fp; // { dg-error "forbids comparison" } no conversion from pfn to void* local
H A Dtypedef.C8 F *fp; member in struct:A
9 F1 g() { return fp; } // { dg-bogus "" } typing
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20011106-1.c6 void (*fp) (void); variable
7 char x[sizeof (1, foo) == sizeof (fp) ? 1 : -1];
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.jason/
H A Drfg13.C7 void (*fp)(void);
11 fp = g; /* { dg-error "" } no 'g' in scope */
H A Drfg20.C4 func_type *fp; variable
9 vp != fp; // { dg-error "" } no conversion from pfn to void* local
H A Dtypedef.C8 F *fp; member in struct:A
9 F1 g() { return fp; } // { dg-bogus "" } typing
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20011106-1.c6 void (*fp) (void); variable
7 char x[sizeof (1, foo) == sizeof (fp) ? 1 : -1];
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900324_02.C12 void (*fp)(void); variable
16 fp = 1 ? function_0 : fp; // { dg-error "conditional expression|invalid conversion" }
H A D900428_02.C14 void (*fp) (); variable
23 fp++; /* { dg-error "" } */
24 ++fp; /* { dg-error "" } */
25 fp--; /* { dg-error "" } */
26 --fp; /* { dg-error "" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dredecl-17.c3 void (*fp)(const int i); variable
4 void (*fp)(int i); variable
8 (*fp)(0);
H A Dc90-const-expr-5.c11 void (*fp)(void); variable
25 fp = (const void *)0; /* { dg-error "6:ISO C forbids assignment between function pointer and 'void \\*'" } */
26 fp = (void *)0;
27 fp = (V *)0;
28 fp = 0;
29 fp == 0;
30 0 == fp;
31 fp == (void *)0;
32 (void *)0 == fp;
33 fp
[all...]
H A Dc99-const-expr-5.c11 void (*fp)(void); variable
25 fp = (const void *)0; /* { dg-error "ISO C forbids assignment between function pointer and 'void \\*'" } */
26 fp = (void *)0;
27 fp = (V *)0;
28 fp = 0;
29 fp == 0;
30 0 == fp;
31 fp == (void *)0;
32 (void *)0 == fp;
33 fp
[all...]
H A Dc99-restrict-1.c13 typedef void (*fp) (void); typedef
15 fp restrict baz; /* { dg-bogus "warning" "warning in place of error" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900324_02.C12 void (*fp)(void); variable
16 fp = 1 ? function_0 : fp; // { dg-error "" }
H A D900428_02.C14 void (*fp) (); variable
23 fp++; /* { dg-error "" } */
24 ++fp; /* { dg-error "" } */
25 fp--; /* { dg-error "" } */
26 --fp; /* { dg-error "" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/other/
H A Dptrmem9.C5 void (*A::* fp)() const; // { dg-error "invalid in variable declaration" } variable
H A Dtypedef2.C3 fn* fp; // { dg-error "pointer.*qualified function type" } variable
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dungetc.c54 * Expand the ungetc buffer `in place'. That is, adjust fp->_p when
60 __submore(fp)
61 FILE *fp;
66 _DIAGASSERT(fp != NULL);
68 if (_UB(fp)._base == fp->_ubuf) {
74 _UB(fp)._base = p;
75 _UB(fp)._size = BUFSIZ;
76 p += BUFSIZ - sizeof(fp->_ubuf);
77 for (i = sizeof(fp
[all...]
H A Dwsetup.c57 __swsetup(fp)
58 FILE *fp;
61 _DIAGASSERT(fp != NULL);
70 if ((fp->_flags & __SWR) == 0) {
71 if ((fp->_flags & __SRW) == 0)
73 if (fp->_flags & __SRD) {
75 if (HASUB(fp))
76 FREEUB(fp);
77 fp->_flags &= ~(__SRD|__SEOF);
78 fp
[all...]
H A Dfpurge.c57 fpurge(fp)
58 FILE *fp;
61 _DIAGASSERT(fp != NULL);
63 if (fp->_flags == 0) {
67 FLOCKFILE(fp);
68 if (HASUB(fp))
69 FREEUB(fp);
70 WCIO_FREE(fp);
71 fp->_p = fp
[all...]
H A Dfclose.c52 fclose(fp)
53 FILE *fp;
57 _DIAGASSERT(fp != NULL);
59 if (fp->_flags == 0) { /* not open! */
63 FLOCKFILE(fp);
64 WCIO_FREE(fp);
65 r = fp->_flags & __SWR ? __sflush(fp) : 0;
66 if (fp->_close != NULL && (*fp
[all...]
H A Dflockfile.c59 flockfile(FILE *fp)
62 __flockfile_internal(fp, 0);
66 ftrylockfile(FILE *fp) argument
74 mutex_lock(&_LOCK(fp));
76 if (_LOCKOWNER(fp) == thr_self()) {
77 _LOCKCOUNT(fp)++;
78 } else if (_LOCKOWNER(fp) == NULL) {
79 _LOCKOWNER(fp) = thr_self();
80 _LOCKCOUNT(fp) = 1;
84 mutex_unlock(&_LOCK(fp));
90 funlockfile(FILE *fp) argument
97 __flockfile_internal(FILE *fp, int internal) argument
131 __funlockfile_internal(FILE *fp, int internal) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mep/
H A Ddj2.s3 sb $7,($fp)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.rfg/
H A D00324_02-.C8 void (*fp)(void); variable
15 i ? f : fp; // { dg-error "conditional expression|invalid conversion" }

Completed in 257 milliseconds

1234567891011>>