Searched refs:fp (Results 76 - 100 of 2254) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/m32r/
H A Dm32rx.d16 8: 00 7d f0 00 cmpz fp \|\| nop
19 c: 0d 6d f0 00 cmpeq fp,fp \|\| nop
22 10: 5d cd f0 00 maclh1 fp,fp \|\| nop
25 14: 5d dd f0 00 msblo fp,fp \|\| nop
28 18: 5d ad f0 00 mulwu1 fp,fp \|\| nop
31 1c: 5d bd f0 00 macwu1 fp,f
[all...]
H A Dallinsn.d10 0: 0d ad f0 00 add fp,fp \|\| nop
13 4: 8d ad 00 00 add3 fp,fp,[#]*0
16 8: 0d cd f0 00 and fp,fp \|\| nop
19 c: 8d cd 00 00 and3 fp,fp,[#]*0x0
22 10: 0d ed f0 00 or fp,fp \|\| no
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dsetvbuf.c57 setvbuf(fp, buf, mode, size)
58 FILE *fp;
67 _DIAGASSERT(fp != NULL);
79 FLOCKFILE(fp);
87 (void)__sflush(fp);
88 if (HASUB(fp))
89 FREEUB(fp);
90 WCIO_FREE(fp);
91 fp->_r = fp
[all...]
H A Dfreopen.c64 freopen(file, mode, fp)
66 FILE *fp;
73 _DIAGASSERT(fp != NULL);
76 (void) fclose(fp);
91 if (fp->_flags == 0) {
92 fp->_flags = __SEOF; /* hold on to it */
97 if (fp->_flags & __SWR)
98 (void) __sflush(fp);
100 isopen = fp->_close != NULL;
101 if ((wantfd = __sfileno(fp))
[all...]
H A Dgetc.c57 getc(fp)
58 FILE *fp;
62 _DIAGASSERT(fp != NULL);
64 FLOCKFILE(fp);
65 r = __sgetc(fp);
66 FUNLOCKFILE(fp);
71 getc_unlocked(fp)
72 FILE *fp;
75 _DIAGASSERT(fp != NULL);
77 return (__sgetc(fp));
[all...]
H A Dputc.c57 putc(c, fp)
59 FILE *fp;
63 _DIAGASSERT(fp != NULL);
65 FLOCKFILE(fp);
66 r = __sputc(c, fp);
67 FUNLOCKFILE(fp);
72 putc_unlocked(c, fp)
74 FILE *fp;
77 _DIAGASSERT(fp != NULL);
79 return (__sputc(c, fp));
[all...]
H A Dfgetwc.c44 __fgetwc_unlock(FILE *fp) argument
50 _DIAGASSERT(fp != NULL);
52 _SET_ORIENTATION(fp, 1);
53 wcio = WCIO_GET(fp);
60 if (fp->_r <= 0) {
62 if (__srefill(fp) != 0)
65 nr = mbrtowc(&wc, (const char *)fp->_p,
66 (size_t)fp->_r, &wcio->wcio_mbstate_in);
68 fp->_flags |= __SERR;
71 fp
89 fgetwc(FILE *fp) argument
[all...]
H A Dungetwc.c44 ungetwc(wint_t wc, FILE *fp) argument
48 _DIAGASSERT(fp);
53 FLOCKFILE(fp);
54 _SET_ORIENTATION(fp, 1);
61 wcio = WCIO_GET(fp);
63 FUNLOCKFILE(fp);
69 FUNLOCKFILE(fp);
74 __sclearerr(fp);
75 FUNLOCKFILE(fp);
H A Dwcio.h49 #define _SET_ORIENTATION(fp, mode) \
51 struct wchar_io_data *_wcio = WCIO_GET(fp);\
59 #define WCIO_GET(fp) (&(_EXT(fp)->_wcio))
60 #define WCIO_FREE(fp) \
62 _EXT(fp)->_wcio.wcio_mode = 0;\
63 WCIO_FREEUB(fp);\
65 #define WCIO_FREEUB(fp) \
67 _EXT(fp)->_wcio.wcio_ungetwc_inbuf = 0;\
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dbuiltin-fprintf-1.c5 FILE *fp; variable
12 fprintf (fp, "hello");
14 fprintf (fp, "hello\n");
16 fprintf (fp, "a");
18 fprintf (fp, "");
20 fprintf (fp, "%s", "hello");
22 fprintf (fp, "%s", "hello\n");
24 fprintf (fp, "%s", "a");
26 fprintf (fp, "%c", 'x');
28 fprintf (fp, "
[all...]
H A Dbuiltin-fprintf-chk-1.c5 FILE *fp; variable
12 __fprintf_chk (fp, 1, "hello");
14 __fprintf_chk (fp, 1, "hello\n");
16 __fprintf_chk (fp, 1, "a");
18 __fprintf_chk (fp, 1, "");
20 __fprintf_chk (fp, 1, "%s", "hello");
22 __fprintf_chk (fp, 1, "%s", "hello\n");
24 __fprintf_chk (fp, 1, "%s", "a");
26 __fprintf_chk (fp, 1, "%c", 'x');
28 __fprintf_chk (fp,
[all...]
H A Dpta-fp.c9 double (*fp) (double);
12 fp = sin;
13 c = fp (a);
18 fp = cos;
20 d = fp (a);
H A Dssa-pre-13.c9 double (*fp) (double) __attribute__ ((const));
13 fp = sin;
14 c = fp (a);
19 fp = cos;
21 d = fp (a);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A Dbuiltin-fprintf-1.c5 FILE *fp; variable
12 fprintf (fp, "hello");
14 fprintf (fp, "hello\n");
16 fprintf (fp, "a");
18 fprintf (fp, "");
20 fprintf (fp, "%s", "hello");
22 fprintf (fp, "%s", "hello\n");
24 fprintf (fp, "%s", "a");
26 fprintf (fp, "%c", 'x');
28 fprintf (fp, "
[all...]
H A Dbuiltin-fprintf-chk-1.c5 FILE *fp; variable
12 __fprintf_chk (fp, 1, "hello");
14 __fprintf_chk (fp, 1, "hello\n");
16 __fprintf_chk (fp, 1, "a");
18 __fprintf_chk (fp, 1, "");
20 __fprintf_chk (fp, 1, "%s", "hello");
22 __fprintf_chk (fp, 1, "%s", "hello\n");
24 __fprintf_chk (fp, 1, "%s", "a");
26 __fprintf_chk (fp, 1, "%c", 'x');
28 __fprintf_chk (fp,
[all...]
H A Dpta-fp.c9 double (*fp) (double);
12 fp = sin;
13 c = fp (a);
18 fp = cos;
20 d = fp (a);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dfopen_unlocked.c82 unlock_1 (FILE *const fp ATTRIBUTE_UNUSED)
85 if (fp)
86 __fsetlocking (fp, FSETLOCKING_BYCALLER);
91 unlock_stream (FILE *fp) argument
93 unlock_1 (fp);
107 FILE *const fp = fopen (path, mode); local
108 unlock_1 (fp);
109 return fp;
115 FILE *const fp = fdopen (fildes, mode); local
116 unlock_1 (fp);
123 FILE *const fp = freopen (path, mode, stream); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/
H A Dfopen_unlocked.c82 unlock_1 (FILE *const fp ATTRIBUTE_UNUSED)
85 if (fp)
86 __fsetlocking (fp, FSETLOCKING_BYCALLER);
91 unlock_stream (FILE *fp) argument
93 unlock_1 (fp);
107 FILE *const fp = fopen (path, mode); local
108 unlock_1 (fp);
109 return fp;
115 FILE *const fp = fdopen (fildes, mode); local
116 unlock_1 (fp);
123 FILE *const fp = freopen (path, mode, stream); local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dfopen_unlocked.c82 unlock_1 (FILE *const fp ATTRIBUTE_UNUSED)
85 if (fp)
86 __fsetlocking (fp, FSETLOCKING_BYCALLER);
91 unlock_stream (FILE *fp) argument
93 unlock_1 (fp);
107 FILE *const fp = fopen (path, mode); local
108 unlock_1 (fp);
109 return fp;
115 FILE *const fp = fdopen (fildes, mode); local
116 unlock_1 (fp);
123 FILE *const fp = freopen (path, mode, stream); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dfopen_unlocked.c85 unlock_1 (FILE *const fp ATTRIBUTE_UNUSED)
88 if (fp)
89 __fsetlocking (fp, FSETLOCKING_BYCALLER);
94 unlock_stream (FILE *fp) argument
96 unlock_1 (fp);
110 FILE *const fp = fopen (path, mode); local
111 unlock_1 (fp);
112 return fp;
118 FILE *const fp = fdopen (fildes, mode); local
119 unlock_1 (fp);
126 FILE *const fp = freopen (path, mode, stream); local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/contrib/slapd-modules/nssov/nss-pam-ldapd/
H A Dtio.c138 struct tio_fileinfo *fp; local
139 fp=(struct tio_fileinfo *)malloc(sizeof(struct tio_fileinfo));
140 if (fp==NULL)
142 fp->fd=fd;
144 fp->readbuffer.buffer=(uint8_t *)malloc(initreadsize);
145 if (fp->readbuffer.buffer==NULL)
147 free(fp);
150 fp->readbuffer.size=initreadsize;
151 fp->readbuffer.maxsize=maxreadsize;
152 fp
181 tio_select(TFILE *fp, int readfd, const struct timeval *deadline) argument
229 tio_read(TFILE *fp, void *buf, size_t count) argument
313 tio_skip(TFILE *fp, size_t count) argument
320 tio_writebuf(TFILE *fp) argument
371 tio_flush(TFILE *fp) argument
391 tio_flush_nonblock(TFILE *fp) argument
415 tio_write(TFILE *fp, const void *buf, size_t count) argument
468 tio_close(TFILE *fp) argument
489 tio_mark(TFILE *fp) argument
501 tio_reset(TFILE *fp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dfunc-ptr-conv-1.c22 void (*fp)(void); variable
36 fp = v5; /* { dg-warning "6:pointer" "bad conversion" } */
37 fp = c5; /* { dg-warning "6:pointer" "bad conversion" } */
38 fp = (void (*)(void))v5; /* { dg-warning "8:pointer" "bad conversion" } */
39 fp = (void (*)(void))c5; /* { dg-warning "8:pointer" "bad conversion" } */
41 (a ? v2 : fp); /* { dg-warning "11:pointer" "bad conversion" } */
43 fp = 0;
44 fp = (void *)0;
45 fp = 0L;
46 fp
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dfunc-ptr-conv-1.c22 void (*fp)(void); variable
36 fp = v5; /* { dg-warning "pointer" "bad conversion" } */
37 fp = c5; /* { dg-warning "pointer" "bad conversion" } */
38 fp = (void (*)(void))v5; /* { dg-warning "pointer" "bad conversion" } */
39 fp = (void (*)(void))c5; /* { dg-warning "pointer" "bad conversion" } */
41 (a ? v2 : fp); /* { dg-warning "pointer" "bad conversion" } */
43 fp = 0;
44 fp = (void *)0;
45 fp = 0L;
46 fp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/init/
H A Dpmf1.C8 typedef void (pair::*fp)(); typedef in struct:pair
10 pair::fp second;
11 pair(const int& a, const pair::fp& b) : first(a), second(b) {}
12 void f(const int& a, const pair::fp& b) { first = a; second = b; }
16 pair(5, pair::fp());
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/init/
H A Dpmf1.C8 typedef void (pair::*fp)(); typedef in struct:pair
10 pair::fp second;
11 pair(const int& a, const pair::fp& b) : first(a), second(b) {}
12 void f(const int& a, const pair::fp& b) { first = a; second = b; }
16 pair(5, pair::fp());

Completed in 223 milliseconds

1234567891011>>