Searched refs:fp (Results 251 - 275 of 2254) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/gnu/usr.bin/rcs/lib/
H A Drcskeep.c80 * Remove lint and speed up by making FILE *fp local, not global.
124 getoldkeys(fp)
125 register RILE *fp;
127 * revision number, and state out of the file fp.
128 * If fp is null, workname is opened and closed instead of using fp.
147 if (!fp) {
148 if (!(fp = Iopen(workname, FOPEN_R_WORK, (struct stat*)0))) {
169 Igeteof_(fp, c, goto ok;)
185 Igeteof_(fp,
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/sparc/fpu/
H A Dfpu_explode.c89 fpu_itof(struct fpn *fp, u_int i) argument
100 fp->fp_exp = FP_LG;
101 fp->fp_mant[0] = (int)i < 0 ? -i : i;
102 fp->fp_mant[1] = 0;
103 fp->fp_mant[2] = 0;
104 fp->fp_mant[3] = 0;
105 fpu_norm(fp);
114 fpu_xtof(struct fpn *fp, uint64_t i) argument
125 fp->fp_exp = FP_LG2;
126 *((int64_t*)fp
174 fpu_stof(struct fpn *fp, u_int i) argument
192 fpu_dtof(struct fpn *fp, u_int i, u_int j) argument
211 fpu_qtof(register struct fpn *fp, u_int i, u_int j, u_int k, u_int l) argument
237 fpu_explode(struct fpemu *fe, struct fpn *fp, int type, int reg) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/s390/
H A Dfixdfdi.h25 #define EXPD(fp) (((fp.l.i[0]) >> 16) & 0x7FFF)
30 #define SIGND(fp) ((fp.l.i[0]) & SIGNBIT)
31 #define MANTD_HIGH_LL(fp) ((fp.ll[0] & HIGH_LL_FRAC_MASK) | HIGH_LL_UNIT_BIT)
32 #define MANTD_LOW_LL(fp) (fp.ll[1])
33 #define FRACD_ZERO_P(fp) (!fp
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/bounce/
H A Dbounce_templates.c248 void bounce_templates_load(VSTREAM *fp, BOUNCE_TEMPLATES *ts) argument
268 while (vstring_get_nonl(line_buf, fp) > 0) {
275 VSTREAM_PATH(fp), lineno, err, STR(line_buf));
282 VSTREAM_PATH(fp), lineno);
285 VSTREAM_PATH(fp), lineno);
294 while (vstring_get_nonl(line_buf, fp) > 0) {
302 if (vstream_feof(fp))
304 VSTREAM_PATH(fp), lineno, value);
313 bounce_template_load(ts->failure, VSTREAM_PATH(fp), value);
315 bounce_template_load(ts->delay, VSTREAM_PATH(fp), valu
335 bounce_plain_out(VSTREAM *fp, const char *text) argument
343 bounce_templates_expand(VSTREAM *fp, BOUNCE_TEMPLATES *ts) argument
370 bounce_templates_dump(VSTREAM *fp, BOUNCE_TEMPLATES *ts) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/
H A Dversion.c52 emit_simple_ver(tOptions * pOpts, FILE * fp) argument
55 fputs(pOpts->pzFullVersion, fp);
61 fwrite(pOpts->pzCopyright, 1, pe - pOpts->pzCopyright, fp);
68 fwrite(pOpts->pzUsageTitle, 1, pe - pOpts->pzCopyright, fp);
70 fputc('\n', fp);
74 emit_copy_ver(tOptions * pOpts, FILE * fp) argument
77 fputs(pOpts->pzCopyright, fp);
80 fputs(pOpts->pzFullVersion, fp);
86 fwrite(pOpts->pzUsageTitle, 1, pe - pOpts->pzCopyright, fp);
89 fputc('\n', fp);
99 emit_copy_note(tOptions * pOpts, FILE * fp) argument
121 print_ver(tOptions * pOpts, tOptDesc * pOD, FILE * fp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/common/ctf/
H A Dctf_labels.c32 extract_label_info(ctf_file_t *fp, const ctf_lblent_t **ctl, uint_t *num_labels) argument
39 if (fp->ctf_version < CTF_VERSION_2)
40 return (ctf_set_errno(fp, ECTF_NOTSUP));
42 h = (const ctf_header_t *)fp->ctf_data.cts_data;
45 *ctl = (const ctf_lblent_t *)(fp->ctf_buf + h->cth_lbloff);
55 ctf_label_topmost(ctf_file_t *fp) argument
61 if (extract_label_info(fp, &ctlp, &num_labels) == CTF_ERR)
65 (void) ctf_set_errno(fp, ECTF_NOLABELDATA);
69 if ((s = ctf_strraw(fp, (ctlp + num_labels - 1)->ctl_label)) == NULL)
70 (void) ctf_set_errno(fp, ECTF_CORRUP
80 ctf_label_iter(ctf_file_t *fp, ctf_label_f *func, void *arg) argument
138 ctf_label_info(ctf_file_t *fp, const char *lname, ctf_lblinfo_t *linfo) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dgetdelim.c58 int sep, FILE *__restrict fp)
64 _DIAGASSERT(fp != NULL);
75 _SET_ORIENTATION(fp, -1);
79 if (fp->_r <= 0 && __srefill(fp)) {
80 if (__sferror(fp))
87 p = memchr(fp->_p, sep, (size_t)fp->_r);
89 len = fp->_r;
91 len = (p - fp
145 getdelim(char **__restrict buf, size_t *__restrict buflen, int sep, FILE *__restrict fp) argument
[all...]
H A Dfputwc.c46 __fputwc_unlock(wchar_t wc, FILE *fp) argument
55 _DIAGASSERT(fp != NULL);
62 _SET_ORIENTATION(fp, 1);
63 wcio = WCIO_GET(fp);
81 if (__sfvwrite(fp, &uio)) {
89 fputwc(wchar_t wc, FILE *fp) argument
93 _DIAGASSERT(fp != NULL);
95 FLOCKFILE(fp);
96 r = __fputwc_unlock(wc, fp);
97 FUNLOCKFILE(fp);
[all...]
H A Dfwrite.c56 fwrite(buf, size, count, fp)
59 FILE *fp;
65 _DIAGASSERT(fp != NULL);
83 FLOCKFILE(fp);
84 if (__sfvwrite(fp, &uio) != 0)
86 FUNLOCKFILE(fp);
H A Dvfscanf.c133 __svfscanf(FILE *fp, char const *fmt0, va_list ap) argument
137 FLOCKFILE(fp);
138 ret = __svfscanf_unlocked(fp, fmt0, ap);
139 FUNLOCKFILE(fp);
145 while ((fp->_r > 0 || __srefill(fp) == 0) && isspace(*fp->_p)) \
146 nread++, fp->_r--, fp->_p++; \
153 __svfscanf_unlocked(FILE *fp, cons argument
949 parsefloat(FILE *fp, char *buf, char *end) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/back-sock/
H A Dadd.c40 FILE *fp; local
50 if ( (fp = opensock( si->si_sockpath )) == NULL ) {
57 fprintf( fp, "ADD\n" );
58 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
59 sock_print_conn( fp, op->o_conn, si );
60 sock_print_suffixes( fp, op->o_bd );
62 fprintf( fp, "%s", entry2str( op->oq_add.rs_e, &len ) );
64 fprintf (fp, "\n" );
67 sock_read_and_send_results( op, rs, fp );
69 fclose( fp );
[all...]
H A Ddelete.c41 FILE *fp; local
59 if ( (fp = opensock( si->si_sockpath )) == NULL ) {
66 fprintf( fp, "DELETE\n" );
67 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
68 sock_print_conn( fp, op->o_conn, si );
69 sock_print_suffixes( fp, op->o_bd );
70 fprintf( fp, "dn: %s\n", op->o_req_dn.bv_val );
71 fprintf( fp, "\n" );
74 sock_read_and_send_results( op, rs, fp );
75 fclose( fp );
[all...]
H A Dback-sock.h43 FILE *fp,
47 FILE *fp,
54 FILE *fp));
/netbsd-6-1-5-RELEASE/usr.bin/at/
H A Dperm.c61 check_for_user(FILE *fp, const char *name) argument
71 while (fgets(buffer, (int)len + 2, fp) != NULL) {
77 (void)fclose(fp);
87 FILE *fp; local
101 fp = fopen(_PATH_AT_ALLOW, "r");
105 if (fp != NULL) {
106 return check_for_user(fp, pentry->pw_name);
110 fp = fopen(_PATH_AT_DENY, "r");
114 if (fp != NULL)
115 return !check_for_user(fp, pentr
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dscan.c58 scan_ident (FILE *fp, sstring *s, int c) argument
66 c = getc (fp);
77 scan_string (FILE *fp, sstring *s, int init) argument
83 c = getc (fp);
88 c = getc (fp);
93 c = getc (fp);
109 skip_spaces (FILE *fp, int c) argument
114 c = getc (fp);
117 c = getc (fp);
120 ungetc (c, fp);
145 read_upto(FILE *fp, sstring *str, int delim) argument
162 get_token(FILE *fp, sstring *s) argument
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpz/
H A Dfib_ui.c49 mp_ptr fp, xp, yp; local
65 fp = PTR (fn);
88 c2 = mpn_lshift (fp, xp, size, 1);
89 c = c2 + mpn_add_n (xp, fp, yp, size);
92 c2 -= mpn_sub_n (yp, fp, yp, size);
99 c = mpn_mul (fp, xp, xsize, yp, ysize);
103 ASSERT (n & 2 ? fp[0] >= 2 : fp[0] <= GMP_NUMB_MAX-2);
104 fp[0] += (n & 2 ? -CNST_LIMB(2) : CNST_LIMB(2));
108 ASSERT (fp[
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/fsinfo/
H A Dwr_fstab.c57 static void write_aix1_dkrmount(FILE *ef, char *hn, fsmount *fp);
59 static void write_aix3_dkrmount(FILE *ef, char *hn, fsmount *fp);
63 static void write_generic_dkrmount(FILE *ef, char *hn, fsmount *fp);
65 static void write_ultrix_dkrmount(FILE *ef, char *hn, fsmount *fp);
72 void (*op_mount) (FILE *ef, char *hn, fsmount *fp);
126 write_aix1_dkrmount(FILE *ef, char *hn, fsmount *fp) argument
128 char *h = strdup(fp->f_ref->m_dk->d_host->h_hostname);
136 fp->f_localname,
139 fp->f_volname,
140 fp
175 write_aix3_dkrmount(FILE *ef, char *hn, fsmount *fp) argument
209 write_ultrix_dkrmount(FILE *ef, char *hn, fsmount *fp) argument
243 write_generic_dkrmount(FILE *ef, char *hn, fsmount *fp) argument
303 fsmount *fp; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/cfi/
H A Dcfi-mips-1.s10 .frame $fp,8,$31 # vars= 8, regs= 1/0, args= 0, gp= 0
19 sw $fp,0($sp)
21 move $fp,$sp
22 .cfi_def_cfa $fp, 8
28 move $sp,$fp
29 lw $fp,0($sp)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.ext/
H A Dbound1.C13 void foo (A* ap, pmf fp, int A::* ip) argument
19 p = (fptr)(ap->*fp);
20 p = (fptr)(ap->*fp);
22 p = (fptr)(a.*fp);
25 q = (vptr)(ap->*fp);
27 q = (vptr)(a.*fp);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/format/
H A Dext-8.c8 foo (char **sp, wchar_t **lsp, int *ip, float *fp, void **pp) argument
50 scanf ("%ma", fp); /* { dg-warning "flag used with" } */
51 scanf ("%mA", fp); /* { dg-warning "flag used with" } */
52 scanf ("%me", fp); /* { dg-warning "flag used with" } */
53 scanf ("%mf", fp); /* { dg-warning "flag used with" } */
54 scanf ("%mg", fp); /* { dg-warning "flag used with" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.ext/
H A Dbound1.C13 void foo (A* ap, pmf fp, int A::* ip) argument
19 p = (fptr)(ap->*fp);
20 p = (fptr)(ap->*fp);
22 p = (fptr)(a.*fp);
25 q = (vptr)(ap->*fp);
27 q = (vptr)(a.*fp);
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dload_file.c56 VSTREAM *fp; local
67 if ((fp = vstream_fopen(path, O_RDONLY, 0)) == 0)
69 action(fp, context);
70 if (fstat(vstream_fileno(fp), &st) < 0)
72 if (vstream_ferror(fp) || vstream_fclose(fp))
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Dtfrac.c33 check0 (mpfr_ptr ip, mpfr_ptr fp, mpfr_prec_t prec, mpfr_rnd_t rnd) argument
43 if (MPFR_SIGN (ip) != MPFR_SIGN (fp))
48 if (mpfr_add (sum, ip, fp, MPFR_RNDZ))
53 if (MPFR_SIGN (sum) != MPFR_SIGN (fp))
60 inex2 = mpfr_set (fp2, fp, rnd);
92 MPFR_SIGN (sum) != MPFR_SIGN (fp) ||
93 mpfr_cmp (sum, fp))
97 mpfr_add (tmp, ip, fp, MPFR_RNDZ);
102 mpfr_out_str (stdout, 2, 0, fp, MPFR_RNDN);
115 check1 (mpfr_ptr ip, mpfr_ptr fp) argument
246 mpfr_t ip, fp; local
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_mkexrc.c45 FILE *fp; local
74 if ((fp = fdopen(fd, "w")) == NULL) {
80 if (seq_save(sp, fp, "abbreviate ", SEQ_ABBREV) || ferror(fp))
82 if (seq_save(sp, fp, "map ", SEQ_COMMAND) || ferror(fp))
84 if (seq_save(sp, fp, "map! ", SEQ_INPUT) || ferror(fp))
86 if (opts_save(sp, fp) || ferror(fp))
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/bfin/
H A Dcache.s5 PreFetch [fp++];
18 FLUshINv [ fp ];
24 iflush [ fp++ ];

Completed in 238 milliseconds

<<11121314151617181920>>