Searched refs:fn (Results 176 - 200 of 516) sorted by relevance

1234567891011>>

/freebsd-10-stable/lib/msun/ld80/
H A Dk_expl.h217 * "huge" is anything that would make fn*L1 inexact (|x| > ~2**17*ln2).
222 long double fn, q, r, r1, r2, t, z; local
226 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
227 fn = x * INV_L + 0x1.8p63 - 0x1.8p63;
228 r = x - fn * L1 - fn * L2; /* r = r1 + r2 done independently. */
230 n = irintl(fn);
232 n = irint(fn);
234 n = (int)fn;
239 r1 = x - fn * L
[all...]
/freebsd-10-stable/crypto/heimdal/appl/afsutil/
H A Dafslog.c106 const char **fn, *files[] = { _PATH_CELLSERVDB, local
111 for(fn = files; *fn; fn++) {
112 f = fopen(*fn, "r");
/freebsd-10-stable/sys/dev/nvme/
H A Dnvme_test.c259 void (*fn)(void *);
281 fn = nvme_ns_io_test;
283 fn = nvme_ns_bio_test;
289 kthread_add(fn, io_test_internal,
292 kthread_create(fn, io_test_internal,
/freebsd-10-stable/tools/tools/prstats/
H A Dprstats.pl93 my $fn = shift; # File name
99 sysopen(FILE, $fn, O_RDONLY)
100 or die("$fn: open(): $!\n");
109 and die("$fn: PR $pr->{'number'} already exists\n");
222 my $fn = shift; # File name
227 sysopen(FILE, $fn, O_RDWR|O_CREAT|O_TRUNC, 0640)
228 or die("$fn: open(): $!\n");
240 my $fn = shift; # File name
262 set output '$fn'
/freebsd-10-stable/contrib/smbfs/lib/smb/
H A Dsubr.c161 char *home, *fn; local
166 fn = malloc(strlen(home) + 20);
167 sprintf(fn, "%s/.nsmbrc", home);
168 error = rc_open(fn, "r", &smb_rc);
169 free(fn);
/freebsd-10-stable/contrib/gcc/cp/
H A Dcp-objcp-common.c138 cp_var_mod_type_p (tree type, tree fn) argument
143 return (variably_modified_type_p (TYPE_PTRMEM_CLASS_TYPE (type), fn)
145 fn));
H A Ddecl2.c176 maybe_retrofit_in_chrg (tree fn)
181 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
191 if (DECL_CONSTRUCTOR_P (fn)
192 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
195 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
199 parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
203 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
214 DECL_HAS_VTT_PARM_P (fn) = 1;
224 TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
227 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
175 maybe_retrofit_in_chrg(tree fn) argument
1228 tree fn; local
1715 tree fn = DECL_CONTEXT (decl); local
2404 tree fn; local
3482 build_offset_ref_call_from_tree(tree fn, tree args) argument
[all...]
H A Dsearch.c506 fn-local NULL SET
508 class->fn SET SET
509 fn->class SET SET
512 itself inside a class, we need decls to go into the fn's decls (our
1003 tree fn = OVL_CURRENT (t);
1004 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1340 tree fn;
1344 VEC_iterate (tree, methods, i, fn); ++i)
1350 fn = OVL_CURRENT (fn);
1001 tree fn = OVL_CURRENT (t); local
1338 tree fn; local
1371 tree fn; local
1957 tree fn = OVL_CURRENT (fns); local
1983 tree fn = look_for_overrides_here (type, fndecl); local
[all...]
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/
H A DRTDyldMemoryManager.cpp243 #define ARM_MATH_CHECK(fn) if (Name == #fn) return (uint64_t)&fn;
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h57 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } argument
69 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } argument
81 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } argument
91 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } argument
101 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checke argument
111 CheckerFn(CheckerBase *checker, Func fn) argument
[all...]
/freebsd-10-stable/crypto/openssl/crypto/engine/
H A Dtb_asnmth.c130 ENGINE_PKEY_ASN1_METHS_PTR fn = ENGINE_get_pkey_asn1_meths(e); local
131 if (!fn || !fn(e, &ret, NULL, nid)) {
/freebsd-10-stable/sys/ofed/include/linux/
H A Dworkqueue.h49 void (*fn)(struct work_struct *); member in struct:work_struct
52 typedef __typeof(((struct work_struct *)0)->fn) work_func_t;
74 (work)->fn = (func); \
/freebsd-10-stable/contrib/binutils/gas/
H A Dmessages.c394 as_assert (const char *file, int line, const char *fn) argument
398 if (fn)
400 fn, file, line);
411 as_abort (const char *file, int line, const char *fn) argument
414 if (fn)
416 file, line, fn);
/freebsd-10-stable/lib/msun/ld128/
H A Ds_expl.c204 double dr, dx, fn, r2; local
269 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
270 fn = (double)x * INV_L + 0x1.8p52 - 0x1.8p52;
272 n = irint(fn);
274 n = (int)fn;
278 r1 = x - fn * L1;
279 r2 = fn * -L2;
/freebsd-10-stable/usr.sbin/ppp/
H A Dthroughput.c65 t->callback.fn = NULL;
189 if (t->callback.fn != NULL && uptime >= t->SamplePeriod)
190 (*t->callback.fn)(t->callback.data);
298 throughput_callback(struct pppThroughput *t, void (*fn)(void *), void *data)
300 t->callback.fn = fn;
/freebsd-10-stable/contrib/groff/src/libs/libgroff/
H A Dtmpfile.cpp137 xtmpfile_list(char *fn) : fname(fn), next(0) {} argument
/freebsd-10-stable/contrib/smbfs/smbutil/
H A Dsmbutil.c31 cmd_fn_t* fn; member in struct:commands
136 return cmd->fn(argc, argv);
/freebsd-10-stable/crypto/heimdal/lib/hdb/
H A Ddb3.c250 char *fn; local
267 asprintf(&fn, "%s.db", db->hdb_name);
268 if (fn == NULL) {
273 free(fn);
280 ret = (*d->open)(db->hdb_db, NULL, fn, NULL, DB_BTREE, myflags, mode);
282 ret = (*d->open)(db->hdb_db, fn, NULL, DB_BTREE, myflags, mode);
297 free(fn);
302 free(fn);
/freebsd-10-stable/sys/netpfil/ipfw/
H A Ddn_heap.c284 heap_scan(struct dn_heap *h, int (*fn)(void *, uintptr_t),
290 ret = fn(h->p[i].object, arg);
490 dn_ht_scan(struct dn_ht *ht, int (*fn)(void *, void *), void *arg)
495 if (ht == NULL || fn == NULL)
501 ret = fn(cur, arg);
525 dn_ht_scan_bucket(struct dn_ht *ht, int *bucket, int (*fn)(void *, void *),
531 if (ht == NULL || fn == NULL)
540 ret = fn(cur, arg);
/freebsd-10-stable/sys/xen/
H A Dgnttab.h49 void (*fn)(void *); member in struct:gnttab_free_callback
109 void (*fn)(void *), void *arg, uint16_t count);
/freebsd-10-stable/usr.sbin/ctm/ctm/
H A Dctm_input.c17 Fatal_(int ln, char *fn, char *kind) argument
20 fprintf(stderr,"Fatal error. (%s:%d)\n",fn,ln);
/freebsd-10-stable/contrib/gcc/
H A Dbuiltins.c1630 mathfn_built_in (tree type, enum built_in_function fn)
1634 switch (fn)
2923 tree fn = implicit_built_in_decls[BUILT_IN_MEMCPY];
2925 if (!fn)
2928 return expand_expr (build_function_call_expr (fn, arglist),
3049 tree fn = implicit_built_in_decls[BUILT_IN_MEMCPY];
3050 if (!fn)
3052 fn = build_function_call_expr (fn, arglist);
3053 if (TREE_CODE (fn)
1629 mathfn_built_in(tree type, enum built_in_function fn) argument
2922 tree fn = implicit_built_in_decls[BUILT_IN_MEMCPY]; local
3048 tree fn = implicit_built_in_decls[BUILT_IN_MEMCPY]; local
3210 tree fn = implicit_built_in_decls[BUILT_IN_STRCPY]; local
3419 tree fndecl, fn; local
3688 tree fndecl, fn; local
3847 tree fndecl, fn; local
4913 tree fn, fmt, arg; local
5023 tree fn, fmt, fp, arg; local
5146 tree fn = implicit_built_in_decls[BUILT_IN_STRCPY]; local
5161 tree fn, arg, len; local
5405 expand_builtin_fork_or_exec(tree fn, tree arglist, rtx target, int ignore) argument
8273 tree dest, src, fn; local
8315 tree dest, src, len, fn; local
9296 build_function_call_expr(tree fn, tree arglist) argument
9423 tree fn; local
9545 tree fn; local
9609 tree fn; local
9730 tree fn = implicit_built_in_decls[BUILT_IN_STRCAT]; local
9834 fn = implicit_built_in_decls[BUILT_IN_STRLEN]; local
9856 tree fn; local
10044 tree fn = implicit_built_in_decls[BUILT_IN_STRCPY]; local
10065 tree fn, orig; local
10166 tree fn; local
10250 tree fn = built_in_decls[BUILT_IN_MEMCPY_CHK]; local
10463 tree dest, src, len, size, fn; local
10564 tree dest, src, size, len, fn; local
10648 tree dest, src, size, len, fn; local
10696 tree dest, src, size, fn; local
10731 tree dest, src, size, len, fn; local
10793 tree dest, size, len, fn, fmt, flag; local
10897 tree dest, size, len, fn, fmt, flag; local
10990 tree fmt, fn = NULL_TREE, fn_putchar, fn_puts, arg, call; local
11144 tree fp, fmt, fn = NULL_TREE, fn_fputc, fn_fputs, arg, call; local
[all...]
/freebsd-10-stable/contrib/tcsh/
H A Ded.inputl.c95 COMMAND fn; local
195 /* make sure fn is initialized */
196 fn = (retval == CC_COMPLETE_ALL) ? LIST_ALL : LIST;
365 fn = RECOGNIZE;
371 fn = RECOGNIZE_ALL;
377 fn = RECOGNIZE_SCROLL;
382 fn = RECOGNIZE_SCROLL;
415 switch (matchval = tenematch(InputBuf, Cursor-InputBuf, fn)){
463 fn = (retval == CC_COMPLETE_ALL) ? LIST_ALL : LIST;
464 (void) tenematch(InputBuf, Cursor-InputBuf, fn);
[all...]
/freebsd-10-stable/crypto/heimdal/lib/asn1/
H A Dgen.c119 char *fn = NULL; local
131 if (asprintf(&fn, "%s.hx", headerbase) < 0 || fn == NULL)
133 headerfile = fopen (fn, "w");
135 err (1, "open %s", fn);
136 free(fn);
137 fn = NULL;
142 if (asprintf(&fn, "%s-priv.hx", headerbase) < 0 || fn == NULL)
144 privheaderfile = fopen (fn, "
[all...]
/freebsd-10-stable/crypto/openssl/
H A DMakefile.org611 fn=`basename $$i .pod`; \
612 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
617 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
619 grep -v $$filecase "^$$fn\$$" | \
622 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
640 fn=`basename $$i .pod`; \
642 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
647 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
649 (grep -v $$filecase "^$$fn\$$"; true) | \
653 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn
[all...]

Completed in 485 milliseconds

1234567891011>>