Searched refs:fn (Results 1 - 25 of 516) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_cast_fun_array_param.c7 foo(void *fn) { argument
8 return fn == 0 ? f : (void (*)(void *[4])) fn;
/freebsd-10-stable/lib/msun/src/
H A De_scalb.c18 * __ieee754_scalb(x, fn) is provide for
28 __ieee754_scalb(double x, int fn) argument
31 __ieee754_scalb(double x, double fn)
35 return scalbn(x,fn);
37 if (isnan(x)||isnan(fn)) return x*fn;
38 if (!finite(fn)) {
39 if(fn>0.0) return x*fn;
40 else return x/(-fn);
[all...]
H A De_scalbf.c24 __ieee754_scalbf(float x, int fn) argument
27 __ieee754_scalbf(float x, float fn)
31 return scalbnf(x,fn);
33 if ((isnanf)(x)||(isnanf)(fn)) return x*fn;
34 if (!finitef(fn)) {
35 if(fn>(float)0.0) return x*fn;
36 else return x/(-fn);
38 if (rintf(fn)!
[all...]
H A Ds_llrint.c7 #define fn llrint macro
H A Ds_llrintf.c7 #define fn llrintf macro
H A Ds_llrintl.c7 #define fn llrintl macro
H A Ds_lrintf.c7 #define fn lrintf macro
H A Ds_lrintl.c7 #define fn lrintl macro
/freebsd-10-stable/lib/msun/amd64/
H A Ds_llrint.S5 #define fn llrint define
H A Ds_llrintf.S5 #define fn llrintf define
H A Ds_lrint.S29 #ifndef fn
31 #define fn lrint define
34 ENTRY(fn) function
37 END(fn)
H A Ds_lrintf.S29 #ifndef fn
31 #define fn lrintf define
34 ENTRY(fn) function
37 END(fn)
/freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dfifo.c62 fifonode_t *fn = xmalloc(sizeof (fifonode_t)); local
64 fn->fn_data = data;
65 fn->fn_next = NULL;
68 f->f_head = f->f_tail = fn;
70 f->f_tail->fn_next = fn;
71 f->f_tail = fn;
79 fifonode_t *fn; local
82 if ((fn = f->f_head) == NULL)
85 data = fn->fn_data;
86 if ((f->f_head = fn
105 fifonode_t *fn = f->f_head; local
125 fifonode_t *fn; local
142 fifonode_t *fn; local
[all...]
/freebsd-10-stable/sys/boot/arm/at91/boot0/
H A Dmain.c37 fn_t *fn = (fn_t *)(SDRAM_BASE + (1 << 20)); /* Load to base + 1MB */ local
41 fn();
/freebsd-10-stable/sys/ofed/include/linux/
H A Dmodule.h61 void (*fn)(void);
73 fn = arg;
75 fn();
79 #define module_init(fn) \
80 SYSINIT(fn, SI_SUB_OFED_MODINIT, SI_ORDER_FIRST, _module_run, (fn))
82 #define module_exit(fn) \
83 SYSUNINIT(fn, SI_SUB_OFED_MODINIT, SI_ORDER_SECOND, _module_run, (fn))
89 #define module_init_order(fn, orde
[all...]
/freebsd-10-stable/usr.bin/cksum/
H A Dprint.c47 pcrc(char *fn, uint32_t val, off_t len) argument
50 if (fn != NULL)
51 (void)printf(" %s", fn);
56 psum1(char *fn, uint32_t val, off_t len) argument
59 if (fn != NULL)
60 (void)printf(" %s", fn);
65 psum2(char *fn, uint32_t val, off_t len) argument
68 if (fn != NULL)
69 (void)printf(" %s", fn);
/freebsd-10-stable/contrib/gcc/
H A Dipa-reference.h75 bitmap ipa_reference_get_read_local (tree fn);
76 bitmap ipa_reference_get_written_local (tree fn);
77 bitmap ipa_reference_get_read_global (tree fn);
78 bitmap ipa_reference_get_written_global (tree fn);
79 bitmap ipa_reference_get_not_read_global (tree fn);
80 bitmap ipa_reference_get_not_written_global (tree fn);
H A Dc-objc-common.c59 c_disregard_inline_limits (tree fn) argument
61 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
64 return (!flag_really_no_inline && DECL_DECLARED_INLINE_P (fn)
65 && DECL_EXTERNAL (fn));
71 tree fn = *fnp; local
73 && DECL_INLINE (fn)
74 && DECL_DECLARED_INLINE_P (fn)
75 && !DECL_IN_SYSTEM_HEADER (fn));
78 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
82 "is suppressed using -fno-inline", fn);
[all...]
/freebsd-10-stable/contrib/netbsd-tests/lib/libm/
H A Dt_libm.h4 * Check result of fn(arg) is correct within the bounds.
10 #define T_LIBM_CHECK(subtest, fn, arg, expect_, epsilon_) do { \
13 long double r = fn(arg); \
17 "subtest %u: " #fn "(%g) is %Lg (%.14La) " \
22 /* Check that the result of fn(arg) is NaN */
24 #define T_LIBM_CHECK_NAN(subtest, fn, arg) do { \
25 double r = fn(arg); \
27 atf_tc_fail_nonfatal("subtest %u: " #fn "(%g) is %g not NaN", \
32 #define T_LIBM_CHECK_NAN(subtest, fn, arg) (void)(arg)
35 /* Check that the result of fn(ar
[all...]
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dtest-readenv.c60 write_file(const char *fn, const char *s) argument
63 f = fopen(fn, "w");
65 unlink(fn);
71 unlink(fn);
81 char fn[MAXPATHLEN]; local
84 make_file(fn, sizeof(fn));
86 write_file(fn, s1);
87 count = read_environment(fn, &env);
93 write_file(fn, s
[all...]
H A Dsetprogname.c72 char * fn = strdup(p); local
75 strlwr(fn);
76 ext = strrchr(fn, '.');
80 __progname = fn;
/freebsd-10-stable/lib/libutil/tests/
H A Dflopen_test.c50 const char *fn = "test_flopen_create"; local
54 unlink(fn);
55 fd = flopen(fn, O_RDWR|O_CREAT, 0640);
61 unlink(fn);
71 const char *fn = "test_flopen_open"; local
75 fd = open(fn, O_RDWR|O_CREAT, 0640);
80 fd = flopen(fn, O_RDWR);
87 unlink(fn);
97 const char *fn = "test_flopen_lock_self"; local
101 unlink(fn);
123 const char *fn = "test_flopen_lock_other"; local
154 const char *fn = "test_flopen_lock_child"; local
[all...]
/freebsd-10-stable/contrib/gcc/cp/
H A Doptimize.c81 maybe_clone_body (tree fn) argument
87 if (!DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn)
88 && !DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn))
92 (*debug_hooks->deferred_inline_function) (fn);
97 FOR_EACH_CLONE (clone, fn)
105 DECL_SOURCE_LOCATION (clone) = DECL_SOURCE_LOCATION (fn);
106 DECL_INLINE (clone) = DECL_INLINE (fn);
107 DECL_DECLARED_INLINE_P (clone) = DECL_DECLARED_INLINE_P (fn);
108 DECL_COMDAT (clone) = DECL_COMDAT (fn);
109 DECL_WEAK (clone) = DECL_WEAK (fn);
[all...]
/freebsd-10-stable/lib/csu/common/
H A Dignore_init.c51 void (*fn)(void);
56 fn = __fini_array_start[n - 1];
57 if ((uintptr_t)fn != 0 && (uintptr_t)fn != 1)
58 (fn)();
66 void (*fn)(int, char **, char **);
76 fn = __preinit_array_start[n];
77 if ((uintptr_t)fn != 0 && (uintptr_t)fn != 1)
78 fn(arg
[all...]
/freebsd-10-stable/usr.sbin/ppp/
H A Dsig.c58 * Set up signal_recorder to handle the given sig and record ``fn'' as
59 * the function to ultimately call in sig_Handle(). ``fn'' will not be
64 sig_signal(int sig, sig_type fn) argument
72 return signal(sig, fn);
75 if (fn == SIG_DFL || fn == SIG_IGN) {
76 signal(sig, fn);
79 handler[sig - 1] = fn;

Completed in 477 milliseconds

1234567891011>>