| /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
|
| msg_038.c | 12 function fn; member in struct:__anon8054
|
| 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));
|
| /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;
|
| /src/external/gpl2/mkhybrid/dist/ |
| match.h | 13 int matches __PR((char *fn)); 15 int i_matches __PR((char *fn)); 18 int j_matches __PR((char *fn)); 21 int add_match __PR((char *fn)); 22 int i_add_match __PR((char *fn)); 23 int j_add_match __PR((char *fn)); 26 int hfs_add_match __PR((char *fn)); 27 void hfs_add_list __PR((char *fn)); 28 int hfs_matches __PR((char *fn)); 32 void add_list __PR((char *fn)); [all...] |
| /src/external/cddl/osnet/dist/tools/ctf/cvt/ |
| fifo.c | 67 fifonode_t *fn = xmalloc(sizeof (fifonode_t)); local 69 fn->fn_data = data; 70 fn->fn_next = NULL; 73 f->f_head = f->f_tail = fn; 75 f->f_tail->fn_next = fn; 76 f->f_tail = fn; 84 fifonode_t *fn; local 87 if ((fn = f->f_head) == NULL) 90 data = fn->fn_data; 91 if ((f->f_head = fn->fn_next) == NULL 110 fifonode_t *fn = f->f_head; local 130 fifonode_t *fn; local 147 fifonode_t *fn; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/ |
| netbsd.cc | 32 tree fn = builtin_decl_explicit (fncode); local 36 if (!fn) 39 sym = DECL_ASSEMBLER_NAME (fn); 42 set_user_assembler_name (fn, newname); 44 fn = builtin_decl_implicit (fncode); 45 if (fn) 46 set_user_assembler_name (fn, newname);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/ |
| netbsd.cc | 32 tree fn = builtin_decl_explicit (fncode); local 36 if (!fn) 39 sym = DECL_ASSEMBLER_NAME (fn); 42 set_user_assembler_name (fn, newname); 44 fn = builtin_decl_implicit (fncode); 45 if (fn) 46 set_user_assembler_name (fn, newname);
|
| /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/external/gpl3/gcc/dist/gcc/ |
| ipa-reference.h | 25 bitmap ipa_reference_get_read_global (struct cgraph_node *fn); 26 bitmap ipa_reference_get_written_global (struct cgraph_node *fn);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| ipa-reference.h | 25 bitmap ipa_reference_get_read_global (struct cgraph_node *fn); 26 bitmap ipa_reference_get_written_global (struct cgraph_node *fn);
|
| /src/external/gpl3/gdb/lib/libgdb/ |
| common-agent.c | 18 canonicalize_file_name(const char *fn) 20 return realpath(fn, NULL);
|
| /src/external/gpl3/gdb.old/lib/libgdb/ |
| common-agent.c | 18 canonicalize_file_name(const char *fn) 20 return realpath(fn, NULL);
|
| /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/external/lgpl3/gmp/dist/mpf/ |
| fits_u.h | 39 mp_size_t fn; variable 48 fn = SIZ(f); 49 if (fn < 0) /* zero catched by exp == 0 */ 56 fl = fp[fn-1]; 61 fl = fp[fn-1]; 65 if (fn >= 2) 66 fl |= fp[fn-2];
|
| /src/crypto/external/apache2/openssl/lib/libcrypto/man/ |
| Makefile | 17 fn=$$(basename $$i .pod); \ 18 case $$fn in \ 19 (config|HMAC|MD5|DES_random_key) fn=openssl-$$fn;; \ 22 1) if [ "$$fn" = "openssl" ]; then \ 23 dst=$$fn.$$sec; \ 25 case $$fn in \ 26 openssl*) dst=$$fn.$$sec;; \ 27 *) dst=openssl-$$fn.$$sec;; \ 30 *) dst=$$fn.$$sec;; [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/ |
| cvs-clean.pl | 17 my $fn = shift; 18 lstat ($fn); 20 if (opendir (DIR, $fn)) { 22 &rmrf ($fn."/".$efn); 25 rmdir ($fn); 28 unlink ($fn); 48 for my $fn (grep (!/^\.\.?$/, readdir (DIR))) { 49 if (-d $dir.$fn) { 50 $fn eq "CVS" or $dirsdir{$fn} = 1 [all...] |
| /src/crypto/external/bsd/openssl/lib/libcrypto/man/ |
| Makefile | 17 fn=`basename $$i .pod`; \ 18 if [ "$$fn" = "config" ]; then \ 19 fn=openssl-config; \ 22 1) if [ "$$fn" = "openssl" ]; then \ 23 dst=$$fn.$$sec; \ 25 case $$fn in \ 26 openssl*) dst=$$fn.$$sec;; \ 27 *) dst=openssl-$$fn.$$sec;; \ 30 *) dst=$$fn.$$sec;; \
|