HomeSort by: relevance | last modified time | path
    Searched refs:fn (Results 1 - 25 of 283) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/modules/arch/arm/
kmodtramp.awk 12 fn=$3
13 sub("__wrap_", "", fn)
14 if (fn == $3)
16 print "KMODTRAMPOLINE("fn")"
  /src/tests/usr.bin/xlint/lint1/
d_cast_fun_array_param.c 13 foo(void *fn)
15 return fn == 0 ? f : (void (*)(void *[4]))fn;
msg_024.c 15 /* expect+3: error: cannot initialize function 'fn' [24] */
18 function fn = definition; variable in typeref:typename:function
msg_038.c 12 function fn; member in struct:__anonfa8764860108
gcc_typeof.c 21 cast(double(*fn)(double))
26 take_double(fn);
31 take_function_double_returning_double(fn);
34 take_function_double_returning_double((double (*)(double))fn);
msg_347.c 19 void function_parameter(void *fs, double *fn(void *, int));
25 void last_arg_struct(double d, double *fn(struct last_arg *));
33 void last_param(double d, double *fn(struct last_param));
39 void mismatch(double d, float *fn(struct last_param));
msg_383.c 18 caller(const volatile char *cvcp, const volatile int *cvip, int (*fn)(void))
32 sink_char(fn, fn, fn, fn);
  /src/lib/libm/src/
e_scalb.c 19 * __ieee754_scalb(x, fn) is provide for
30 __ieee754_scalb(double x, int fn)
33 __ieee754_scalb(double x, double fn)
37 return scalbn(x,fn);
39 if (isnan(x)||isnan(fn)) return x*fn;
40 if (!finite(fn)) {
41 if(fn>0.0) return x*fn;
42 else return x/(-fn);
    [all...]
e_scalbf.c 27 __ieee754_scalbf(float x, int fn)
30 __ieee754_scalbf(float x, float fn)
34 return scalbnf(x,fn);
36 if (isnanf(x)||isnanf(fn)) return x*fn;
37 if (!finitef(fn)) {
38 if(fn>(float)0.0) return x*fn;
39 else return x/(-fn);
41 if (rintf(fn)!=fn) return (fn-fn)/(fn-fn)
    [all...]
w_scalb.c 19 * wrapper scalb(double x, double fn) is provide for
31 scalb(double x, int fn) /* wrapper scalb */
34 scalb(double x, double fn) /* wrapper scalb */
38 return __ieee754_scalb(x,fn);
41 z = __ieee754_scalb(x,fn);
44 return __kernel_standard(x,(double)fn,32); /* scalb overflow */
47 return __kernel_standard(x,(double)fn,33); /* scalb underflow */
50 if(!finite(fn)) errno = ERANGE;
w_scalbf.c 22 * wrapper scalbf(float x, float fn) is provide for
34 scalbf(float x, int fn) /* wrapper scalbf */
37 scalbf(float x, float fn) /* wrapper scalbf */
41 return __ieee754_scalbf(x,fn);
44 z = __ieee754_scalbf(x,fn);
48 return (float)__kernel_standard((double)x,(double)fn,132);
52 return (float)__kernel_standard((double)x,(double)fn,133);
55 if(!finitef(fn)) errno = ERANGE;
s_llrint.c 11 #define fn llrint macro
s_llrintf.c 11 #define fn llrintf macro
s_lrintf.c 11 #define fn lrintf macro
s_lrintl.c 13 #define fn lrintl macro
  /src/usr.bin/cksum/
print.c 50 pcrc(char *fn, uint32_t val, off_t len)
53 if (fn)
54 (void)printf(" %s", fn);
59 psum1(char *fn, uint32_t val, off_t len)
63 if (fn)
64 (void)printf(" %s", fn);
69 psum2(char *fn, uint32_t val, off_t len)
73 if (fn)
74 (void)printf(" %s", fn);
  /src/sys/external/bsd/drm2/include/linux/
async.h 38 * async_schedule(fn, arg)
40 * Schedule the kernel to run fn(arg, cookie) at some point to
46 async_schedule(void (*fn)(void *, async_cookie_t), void *arg)
49 (*fn)(arg, 1);
  /src/sys/dev/pckbport/
pckbdvar.h 6 void pckbd_hookup_bell(void (*fn)(void *, u_int, u_int, u_int, int), void *);
7 void pckbd_unhook_bell(void (*fn)(void *, u_int, u_int, u_int, int), void *);
  /src/sys/sys/
once.h 52 #define RUN_ONCE(o, fn) \
54 ((o)->o_error) : _init_once((o), (fn)))
56 #define INIT_ONCE(o, fn) _init_once((o), (fn))
57 #define FINI_ONCE(o, fn) _fini_once((o), (fn))
  /src/tests/lib/libm/
t_libm.h 4 * 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(arg) is +0.0 *
    [all...]
  /src/libexec/ld.elf_so/
diagassert.c 6 __diagassert13(const char *fn, int fl, const char *fu, const char *m)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_ioc32.c 59 drm_ioctl_compat_t *fn = NULL; local in function:nouveau_compat_ioctl
67 fn = nouveau_compat_ioctls[nr - DRM_COMMAND_BASE];
69 if (fn != NULL)
70 ret = (*fn)(filp, cmd, arg);
  /src/sys/rump/include/rump-sys/
dev.h 35 void rump_pdev_add(void (*fn)(int), int);
  /src/sys/external/bsd/drm2/amdgpu/
amdgpu_task.h 47 amdgpu_task_init(struct amdgpu_task *task, void (*fn)(struct amdgpu_task *))
50 task->rt_fn = fn;
  /src/sys/external/bsd/drm2/i915drm/
i915_pci.h 48 void (*fn)(struct i915drmkms_task *))
51 task->ift_fn = fn;

Completed in 50 milliseconds

1 2 3 4 5 6 7 8 91011>>