Searched refs:fp (Results 26 - 50 of 2254) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.rfg/
H A D00324_02-.C8 void (*fp)(void); variable
15 i ? f : fp; // { dg-error "" }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
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/sys/arch/zaurus/include/
H A Dfp.h3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/netwinder/include/
H A Dfp.h3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/shark/include/
H A Dfp.h3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/hpcarm/include/
H A Dfp.h1 /* $NetBSD: fp.h,v 1.5 2001/01/11 22:07:58 bjh21 Exp $ */
3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/iyonix/include/
H A Dfp.h1 /* $NetBSD: fp.h,v 1.1.2.1 2004/10/19 15:56:37 skrll Exp $ */
3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/cats/include/
H A Dfp.h3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/evbarm/include/
H A Dfp.h3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/acorn26/include/
H A Dfp.h1 /* $NetBSD: fp.h,v 1.2 2001/01/11 22:07:54 bjh21 Exp $ */
3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/sys/arch/acorn32/include/
H A Dfp.h1 /* $NetBSD: fp.h,v 1.5 2001/01/11 22:07:58 bjh21 Exp $ */
3 #include <arm/fp.h>
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Drefill.c58 lflush(fp)
59 FILE *fp;
62 _DIAGASSERT(fp != NULL);
64 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
65 return (__sflush(fp));
74 __srefill(fp)
75 FILE *fp;
78 _DIAGASSERT(fp != NULL);
84 fp->_r = 0; /* largely a convenience for callers */
87 if (fp
[all...]
H A Dftell.c54 ftell(fp)
55 FILE *fp;
60 FLOCKFILE(fp);
62 if (fp->_seek == NULL) {
63 FUNLOCKFILE(fp);
72 __sflush(fp); /* may adjust seek offset on append stream */
73 if (fp->_flags & __SOFF)
74 pos = fp->_offset;
76 pos = (*fp->_seek)(fp
[all...]
H A Dftello.c55 ftello(fp)
56 FILE *fp;
61 FLOCKFILE(fp);
63 if (fp->_seek == NULL) {
64 FUNLOCKFILE(fp);
73 __sflush(fp); /* may adjust seek offset on append stream */
74 if (fp->_flags & __SOFF)
75 pos = fp->_offset;
77 pos = (*fp->_seek)(fp
[all...]
H A Dfseeko.c63 fseeko(FILE *fp, off_t offset, int whence)
71 _DIAGASSERT(fp != NULL);
77 FLOCKFILE(fp);
82 if ((seekfn = fp->_seek) == NULL) {
84 FUNLOCKFILE(fp);
100 __sflush(fp); /* may adjust seek offset on append stream */
101 if (fp->_flags & __SOFF)
102 curoff = fp->_offset;
104 curoff = (*seekfn)(fp->_cookie, (off_t)0, SEEK_CUR);
106 FUNLOCKFILE(fp);
[all...]
H A Drewind.c51 rewind(fp)
52 FILE *fp;
55 _DIAGASSERT(fp != NULL);
57 FLOCKFILE(fp);
58 (void) fseek(fp, 0L, SEEK_SET);
59 __sclearerr(fp);
60 FUNLOCKFILE(fp);
H A Drget.c56 __srget(fp)
57 FILE *fp;
60 _DIAGASSERT(fp != NULL);
62 _SET_ORIENTATION(fp, -1);
63 if (__srefill(fp) == 0) {
64 fp->_r--;
65 return (*fp->_p++);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/ext/
H A Daltivec-12.C9 extern float *fp;
15 vec_dst (fp, i, 1);
16 vec_dstst (fp, i, 1);
17 vec_dststt (fp, i, 1);
18 vec_dstt (fp, i, 1);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/ext/
H A Daltivec-12.C9 extern float *fp;
15 vec_dst (fp, i, 1);
16 vec_dstst (fp, i, 1);
17 vec_dststt (fp, i, 1);
18 vec_dstt (fp, i, 1);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/tc1/
H A Ddr179.C6 typedef void (*fp)(void); typedef
10 fp f1 = foo;
11 fp f2 = foo;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D930702-1.c0 fp (double a, int b)
9 int (*f) (double, int) = fp;
11 fp (33, 11);
1 fp (double a, int b) function
H A Dfunc-ptr-1.c2 static double (*fp) (float a); variable
6 fp = f;
7 if (fp ((float) 1) != 1.0)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/tc1/
H A Ddr179.C6 typedef void (*fp)(void); typedef
10 fp f1 = foo;
11 fp f2 = foo;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D930702-1.c0 fp (double a, int b)
9 int (*f) (double, int) = fp;
11 fp (33, 11);
1 fp (double a, int b) function
H A Dfunc-ptr-1.c2 static double (*fp) (float a); variable
6 fp = f;
7 if (fp ((float) 1) != 1.0)

Completed in 294 milliseconds

1234567891011>>