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

123456789

/external/fdlibm/
H A De_scalb.c15 * __ieee754_scalb(x, fn) is provide for
24 double __ieee754_scalb(double x, int fn) argument
26 double __ieee754_scalb(x,fn)
27 double x; int fn;
31 double __ieee754_scalb(double x, double fn)
33 double __ieee754_scalb(x,fn)
34 double x, fn;
39 return ieee_scalbn(x,fn);
41 if (ieee_isnan(x)||ieee_isnan(fn)) return x*fn;
[all...]
H A Dw_scalb.c15 * wrapper ieee_scalb(double x, double fn) is provide for
26 double ieee_scalb(double x, int fn) /* wrapper scalb */ argument
28 double ieee_scalb(double x, double fn) /* wrapper scalb */
31 double ieee_scalb(x,fn) /* wrapper scalb */
33 double x; int fn;
35 double x,fn;
40 return __ieee754_scalb(x,fn);
43 z = __ieee754_scalb(x,fn);
46 return __kernel_standard(x,(double)fn,32); /* scalb overflow */
49 return __kernel_standard(x,(double)fn,3
[all...]
/external/kernel-headers/original/linux/
H A Dinit.h88 #define __define_initcall(level,fn) \
89 static initcall_t __initcall_##fn __attribute_used__ \
90 __attribute__((__section__(".initcall" level ".init"))) = fn
92 #define core_initcall(fn) __define_initcall("1",fn)
93 #define postcore_initcall(fn) __define_initcall("2",fn)
94 #define arch_initcall(fn) __define_initcall("3",fn)
95 #define subsys_initcall(fn) __define_initcal
[all...]
H A Dattribute_container.h42 int (*fn)(struct attribute_container *,
46 int (*fn)(struct attribute_container *,
50 void (*fn)(struct attribute_container *,
54 int (*fn)(struct attribute_container *,
58 int (*fn)(struct attribute_container *,
H A Dcpu.h71 #define hotcpu_notifier(fn, pri) { \
72 static struct notifier_block fn##_nb = \
73 { .notifier_call = fn, .priority = pri }; \
74 register_cpu_notifier(&fn##_nb); \
84 #define hotcpu_notifier(fn, pri) do { } while (0)
/external/v8/test/mjsunit/regress/
H A Dregress-267.js31 function taint(fn){var v = fn(); eval("taint"); return v; }
/external/kernel-headers/original/asm-arm/
H A Dglue.h20 #define ____glue(name,fn) name##fn
22 #define ____glue(name,fn) name/**/fn
24 #define __glue(name,fn) ____glue(name,fn)
/external/dbus/tools/
H A Ddbus-uuidgen.c56 const char *fn; local
61 fn = arg + strlen(option);
63 if (!(*fn == '=' || *fn == ' ' || *fn == '\0'))
68 if (*fn == '=')
69 ++fn;
71 while (*fn == ' ' && *fn != '\0')
72 ++fn;
[all...]
/external/libvpx/vp8/encoder/
H A Ddct.h60 #define FDCT_INVOKE(ctx,fn) (ctx)->fn
62 #define FDCT_INVOKE(ctx,fn) vp8_fdct_##fn
H A Dquantize.h45 #define QUANTIZE_INVOKE(ctx,fn) (ctx)->fn
47 #define QUANTIZE_INVOKE(ctx,fn) vp8_quantize_##fn
H A Dencodemb.h87 #define ENCODEMB_INVOKE(ctx,fn) (ctx)->fn
89 #define ENCODEMB_INVOKE(ctx,fn) vp8_encodemb_##fn
H A Dmcomp.h119 #define SEARCH_INVOKE(ctx,fn) (ctx)->fn
121 #define SEARCH_INVOKE(ctx,fn) vp8_search_##fn
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
H A DSDL_x11dyn.c64 static void X11_GetSym(const char *fnname, int *rc, void **fn) argument
70 *fn = SDL_LoadFunction(x11libs[i].lib, fnname);
71 if (*fn != NULL)
77 if (*fn != NULL)
78 printf("X11: Found '%s' in %s (%p)\n", fnname, x11libs[i].libname, *fn);
83 if (*fn == NULL)
90 #define SDL_X11_SYM(rc,fn,params,args,ret) \
91 static rc (*p##fn) params = NULL; \
92 rc fn params { ret p##fn arg
[all...]
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_thread.h82 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
87 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
89 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
92 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
/external/v8/test/mjsunit/
H A Dcall.js77 function fn() { function
81 assertEquals(0, fn.call());
82 assertEquals(0, fn.call(this));
83 assertEquals(0, fn.call(null));
84 assertEquals(0, fn.call(void 0));
85 assertEquals(1, fn.call(this, 1));
86 assertEquals(2, fn.call(this, 1, 2));
87 assertEquals(3, fn.call(this, 1, 2, 3));
/external/openssl/crypto/evp/
H A Dnames.c138 void (*fn)(const EVP_CIPHER *ciph, member in struct:doall_cipher
146 dc->fn(NULL, nm->name, nm->data, dc->arg);
148 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg);
151 void EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph,
155 dc.fn = fn;
160 void EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph,
164 dc.fn = fn;
172 void (*fn)(cons member in struct:doall_md
[all...]
/external/libvpx/vp8/common/
H A Didct.h75 #define IDCT_INVOKE(ctx,fn) (ctx)->fn
77 #define IDCT_INVOKE(ctx,fn) vp8_idct_##fn
H A Dloopfilter.h115 #define LF_INVOKE(ctx,fn) (ctx)->fn
117 #define LF_INVOKE(ctx,fn) vp8_lf_##fn
H A Drecon.h92 #define RECON_INVOKE(ctx,fn) (ctx)->fn
94 #define RECON_INVOKE(ctx,fn) vp8_recon_##fn
H A Dsubpixel.h81 #define SUBPIX_INVOKE(ctx,fn) (ctx)->fn
83 #define SUBPIX_INVOKE(ctx,fn) vp8_subpix_##fn
/external/chromium/net/data/proxy_resolver_v8_unittest/
H A Dbindings.js20 dnsResolve(fn);
52 function fn() {} function
/external/libvpx/vp8/decoder/
H A Ddequantize.h107 #define DEQUANT_INVOKE(ctx,fn) (ctx)->fn
109 #define DEQUANT_INVOKE(ctx,fn) vp8_dequant_##fn
/external/yaffs2/yaffs2/direct/
H A Ddtest.c63 void make_pattern_file(char *fn,int size) argument
68 outh = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
82 int check_pattern_file(char *fn) argument
90 h = yaffs_open(fn, O_RDWR,0);
101 fn,size,i,marker,~i);
112 int dump_file_data(char *fn) argument
121 h = yaffs_open(fn, O_RDWR,0);
124 printf("%s\n",fn);
142 void dump_file(const char *fn) argument
148 h = yaffs_open(fn,O_RDONL
164 create_file_of_size(const char *fn,int syze) argument
184 verify_file_of_size(const char *fn,int syze) argument
213 create_resized_file_of_size(const char *fn,int syze1,int reSyze, int syze2) argument
247 char fn[100]; local
263 char fn[100]; local
287 char fn[100]; local
316 char fn[100]; local
338 char fn[3][100]; local
1563 char fn[100]; local
1627 write_200k_file(const char *fn, const char *fdel, const char *fdel1) argument
1664 verify_200k_file(const char *fn) argument
1765 yaffs_touch(const char *fn) argument
[all...]
/external/iproute2/include/linux/netfilter/
H A Dx_tables.h131 /* fn returns 0 to continue iteration */
132 #define XT_MATCH_ITERATE(type, e, fn, args...) \
143 __ret = fn(__m , ## args); \
150 /* fn returns 0 to continue iteration */
151 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
163 __ret = fn(__entry , ## args); \
170 /* fn returns 0 to continue iteration */
171 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
172 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
/external/qemu/
H A Dmodule.c57 void register_module_init(void (*fn)(void), module_init_type type) argument
63 e->init = fn;

Completed in 478 milliseconds

123456789