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

1234567891011>>

/freebsd-13-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-13-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
H A Ds_llround.c9 #define fn llround macro
/freebsd-13-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)
37 END(fn)
H A Ds_lrintf.S29 #ifndef fn
31 #define fn lrintf define
34 ENTRY(fn)
37 END(fn)
/freebsd-13-stable/usr.bin/units/tests/
H A Dbasics_test.sh11 fn="$3"
12 if [ "$expected" = "$($fn)" ]
14 echo "ok $testnum - $fn"
16 echo "not ok $testnum - $fn"
/freebsd-13-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-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dmodule.h67 void (*fn)(void);
79 fn = arg;
80 fn();
83 #define module_init(fn) \
84 SYSINIT(fn, SI_SUB_OFED_MODINIT, SI_ORDER_FIRST, _module_run, (fn))
86 #define module_exit(fn) \
87 SYSUNINIT(fn, SI_SUB_OFED_MODINIT, SI_ORDER_SECOND, _module_run, (fn))
93 #define module_init_order(fn, orde
[all...]
/freebsd-13-stable/lib/csu/common/
H A Dcrtend.c53 crt_func fn; local
57 fn = __CTOR_END__[-n];
58 if (fn == (crt_func)0 || fn == (crt_func)-1)
60 fn();
/freebsd-13-stable/usr.bin/cksum/
H A Dprint.c49 pcrc(char *fn, uint32_t val, off_t len) argument
52 if (fn != NULL)
53 (void)printf(" %s", fn);
58 psum1(char *fn, uint32_t val, off_t len) argument
61 if (fn != NULL)
62 (void)printf(" %s", fn);
67 psum2(char *fn, uint32_t val, off_t len) argument
70 if (fn != NULL)
71 (void)printf(" %s", fn);
/freebsd-13-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-13-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...]
/freebsd-13-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-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dtest_hooks.h7 #define JEMALLOC_HOOK(fn, hook) ((void)(hook != NULL && (hook(), 0)), fn)
/freebsd-13-stable/sys/contrib/openzfs/include/os/linux/kernel/linux/
H A Dxattr_compat.h44 #define ZPL_XATTR_LIST_WRAPPER(fn) \
46 fn(struct dentry *dentry) \
48 return (!!__ ## fn(dentry->d_inode, NULL, 0, NULL, 0)); \
54 #define ZPL_XATTR_LIST_WRAPPER(fn) \
56 fn(struct dentry *dentry, char *list, size_t list_size, \
59 return (__ ## fn(dentry->d_inode, \
66 #define ZPL_XATTR_LIST_WRAPPER(fn) \
68 fn(const struct xattr_handler *handler, struct dentry *dentry, \
71 return (__ ## fn(dentry->d_inode, \
84 #define ZPL_XATTR_GET_WRAPPER(fn) \
[all...]
/freebsd-13-stable/lib/libc/stdlib/
H A Datexit.c134 struct atexit_fn fn; local
137 fn.fn_type = ATEXIT_FN_STD;
138 fn.fn_ptr.std_func = func;
139 fn.fn_arg = NULL;
140 fn.fn_dso = NULL;
142 error = atexit_register(&fn);
153 struct atexit_fn fn; local
163 fn.fn_type = ATEXIT_FN_CXA;
164 fn.fn_ptr.cxa_func = (void(*)(void*))GET_BLOCK_FUNCTION(func);
165 fn
179 struct atexit_fn fn; local
206 struct atexit_fn fn; local
[all...]
/freebsd-13-stable/usr.sbin/ppp/
H A Dsig.c60 * Set up signal_recorder to handle the given sig and record ``fn'' as
61 * the function to ultimately call in sig_Handle(). ``fn'' will not be
66 sig_signal(int sig, sig_type fn) argument
74 return signal(sig, fn);
77 if (fn == SIG_DFL || fn == SIG_IGN) {
78 signal(sig, fn);
81 handler[sig - 1] = fn;

Completed in 151 milliseconds

1234567891011>>