Searched refs:fn (Results 26 - 50 of 582) sorted by relevance

1234567891011>>

/freebsd-current/lib/msun/src/
H A Ds_lroundf.c6 #define fn lroundf macro
H A Ds_lroundl.c6 #define fn lroundl macro
H A Ds_llroundf.c6 #define fn llroundf macro
H A Ds_llround.c6 #define fn llround macro
H A Ds_lrint.c36 #define fn lrint macro
47 fn(type x) function
H A Ds_fdim.c31 #define DECL(type, fn) \
33 fn(type x, type y) \
H A De_rem_pio2f.c46 double w,r,fn; local
55 fn = rnint((float_t)x*invpio2);
56 n = irint(fn);
57 r = x-fn*pio2_1;
58 w = fn*pio2_1t;
/freebsd-current/lib/libc/stdlib/
H A Datexit.c128 struct atexit_fn fn; local
131 fn.fn_type = ATEXIT_FN_STD;
132 fn.fn_ptr.std_func = func;
133 fn.fn_arg = NULL;
134 fn.fn_dso = NULL;
136 error = atexit_register(&fn);
147 struct atexit_fn fn; local
157 fn.fn_type = ATEXIT_FN_CXA;
158 fn.fn_ptr.cxa_func = (void(*)(void*))GET_BLOCK_FUNCTION(func);
159 fn
173 struct atexit_fn fn; local
200 struct atexit_fn fn; local
[all...]
/freebsd-current/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;
/freebsd-current/crypto/heimdal/lib/roken/
H A Dsetprogname.c72 char * fn = strdup(p); local
75 strlwr(fn);
76 ext = strrchr(fn, '.');
80 __progname = fn;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_ENOSPC/
H A Dzvol_ENOSPC_001_pos.ksh60 typeset -i fn=0
67 file_write -o create -f $TESTDIR/testfile$$.$fn \
74 (( fn = fn + 1 ))
/freebsd-current/tools/build/
H A Dfreebsd-yeet.pl17 my $fn = $_[0];
19 if ($fn =~ m=^./contrib/=) {
22 if ($fn =~ m=^./sys/contrib/=) {
25 if ($fn =~ m=^./cddl/contrib/=) {
28 if ($fn =~ m=^./crypto/=) {
31 if ($fn =~ m=^./.git/=) {
34 if ($fn =~ m=~$=) {
60 my $fn="$File::Find::name";
61 return if skip_list($fn);
62 open my $fh, '<', $_ or die "Can't open $fn
[all...]
/freebsd-current/stand/kboot/kboot/
H A Dutil.c12 file2str(const char *fn, char *buffer, size_t buflen) argument
17 fd = host_open(fn, HOST_O_RDONLY, 0);
36 file2u64(const char *fn, uint64_t *val) argument
41 if (!file2str(fn, buffer, sizeof(buffer)))
/freebsd-current/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dmod_os.h116 #define module_init(fn) \
118 wrap_ ## fn(void *dummy __unused) \
120 fn(); \
122 SYSINIT(zfs_ ## fn, SI_SUB_LAST, SI_ORDER_FIRST, wrap_ ## fn, NULL)
124 #define module_init_early(fn) \
126 wrap_ ## fn(void *dummy __unused) \
128 fn(); \
130 SYSINIT(zfs_ ## fn, SI_SUB_INT_CONFIG_HOOKS, SI_ORDER_FIRST, wrap_ ## fn, NUL
[all...]
/freebsd-current/stand/i386/common/
H A Dcons.h27 int getc(int fn);
28 int xgetc(int fn);
/freebsd-current/usr.bin/cksum/
H A Dcksum.c54 char *fn, *p; local
96 fn = NULL;
100 fn = *argv++;
101 if ((fd = open(fn, O_RDONLY, 0)) < 0) {
102 warn("%s", fn);
108 warn("%s", fn ? fn : "stdin");
111 pfncn(fn, val, len);
/freebsd-current/lib/csu/common/
H A Dcrtbegin.c72 crt_func fn; local
80 fn = __DTOR_LIST__[n];
81 if (fn == (crt_func)0 || fn == (crt_func)-1)
83 fn();
/freebsd-current/tools/test/stress2/misc/
H A Dkevent10.sh73 char *fn = "/tmp/kevent10.trace";
75 if (open(fn, O_RDWR | O_CREAT, 0666) == -1)
76 err(1, "%s", fn);
77 if (ktrace(fn, KTRFLAG_DESCEND | KTROP_SET, KTRFAC_GENIO, 0) == -1)
84 if (ktrace(fn, KTROP_CLEARFILE, KTRFAC_GENIO, 0) == -1)
/freebsd-current/include/
H A Dtgmath.h41 * __tg_impl_simple(x, y, z, fnl, fn, fnf, ...)
43 * double, fn() if it is double or any has an integer type, and fnf()
45 * __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...)
47 * double, [c]fn() if it is double or any has an integer type, and
65 #define __tg_generic(x, cfnl, cfn, cfnf, fnl, fn, fnf) \
71 default: fn, \
77 #define __tg_impl_simple(x, y, z, fnl, fn, fnf, ...) \
80 fnl, fn, fnf, fnl, fn, fnf)(__VA_ARGS__)
81 #define __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fn
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/regex/
H A Dsplit.c51 int fn; local
74 fn = nfields;
77 fn--;
78 if (fn == 0)
82 return(nfields - fn);
86 fn = nfields;
90 return(fn);
91 fn++;
98 fn = nfields;
101 fn
226 int fn; local
[all...]
/freebsd-current/lib/libc/regex/grot/
H A Dsplit.c20 int fn; local
43 fn = nfields;
46 fn--;
47 if (fn == 0)
51 return(nfields - fn);
55 fn = nfields;
59 return(fn);
60 fn++;
67 fn = nfields;
70 fn
195 int fn; local
[all...]
/freebsd-current/lib/libutil/tests/
H A Dpidfile_test.c60 const char *fn = "test_pidfile_uncontested"; local
64 unlink(fn);
65 pf = pidfile_open(fn, 0600, &other);
72 unlink(fn);
76 unlink(fn);
86 const char *fn = "test_pidfile_self"; local
91 unlink(fn);
92 pf1 = pidfile_open(fn, 0600, &other);
100 unlink(fn);
104 pf2 = pidfile_open(fn, 060
125 common_test_pidfile_child(const char *fn, int parent_open) argument
243 const char *fn = "test_pidfile_contested"; local
256 const char *fn = "test_pidfile_inherited"; local
[all...]
/freebsd-current/lib/libfetch/
H A Dfile.c97 fetch_stat_file(const char *fn, struct url_stat *us) argument
103 if (stat(fn, &sb) == -1) {
126 char fn[PATH_MAX], *p; local
136 strncpy(fn, u->doc, sizeof(fn) - 2);
137 fn[sizeof(fn) - 2] = 0;
138 strcat(fn, "/");
139 p = strchr(fn, 0);
140 l = sizeof(fn)
[all...]
/freebsd-current/contrib/ntp/sntp/libevent/test/
H A Dregress_thread.h35 #define THREAD_START(threadvar, fn, arg) do { \
36 uintptr_t threadhandle = _beginthreadex(NULL,0,fn,(arg),0,NULL); \
47 #define THREAD_START(threadvar, fn, arg) do { \
48 if (!pthread_create(&(threadvar), NULL, fn, arg)) \
/freebsd-current/tools/tools/hcomp/
H A Dhcomp.pl39 my $fn = shift;
44 warn("$fn\n")
47 open(FILE, "<", $fn)
48 or die("$fn: $!\n");
69 open(FILE, ">", "$fn.new")
70 or die("$fn.new: $!\n");
74 rename($fn, "$fn.$opt_b")
76 rename("$fn.new", $fn);
[all...]

Completed in 139 milliseconds

1234567891011>>