HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 1 - 25 of 1690) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fdlibm/
e_scalb.c 15 * __ieee754_scalb(x, fn) is provide for
24 double __ieee754_scalb(double x, int fn)
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...]
w_scalb.c 15 * wrapper ieee_scalb(double x, double fn) is provide for
26 double ieee_scalb(double x, int fn) /* wrapper scalb */
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,33); /* scalb underflow *
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_scalb.c 18 * __ieee754_scalb(x, fn) is provide for
28 __ieee754_scalb(double x, int fn)
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...]
e_scalbf.c 24 __ieee754_scalbf(float x, int fn)
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)!=fn) return (fn-fn)/(fn-fn)
    [all...]
  /external/bcc/src/cc/frontends/clang/
arch_helper.h 30 static void *run_arch_callback(arch_callback_t fn)
38 return fn(BCC_ARCH_PPC_LE);
40 return fn(BCC_ARCH_PPC);
43 return fn(BCC_ARCH_S390X);
45 return fn(BCC_ARCH_ARM64);
47 return fn(BCC_ARCH_X86);
54 return fn(BCC_ARCH_PPC_LE);
56 return fn(BCC_ARCH_PPC);
59 return fn(BCC_ARCH_S390X);
61 return fn(BCC_ARCH_ARM64)
    [all...]
  /external/clang/test/SemaCXX/
ms-exception-spec.cpp 7 void fn() throw(S); // expected-warning {{incomplete type}} expected-note{{previous declaration}}
8 void fn() throw(); // expected-warning {{does not match previous declaration}}
  /external/compiler-rt/test/sanitizer_common/TestCases/
fopen_nullptr.c 4 const char *fn = NULL; variable
6 int main() { f = fopen(fn, "r"); }
  /external/u-boot/arch/arm/mach-rmobile/
pfc-r8a7790.h 14 #define CPU_32_PORT(fn, pfx, sfx) \
15 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \
16 PORT_10(fn, pfx##2, sfx), PORT_1(fn, pfx##30, sfx), \
17 PORT_1(fn, pfx##31, sfx)
19 #define CPU_32_PORT2(fn, pfx, sfx) \
20 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \
21 PORT_10(fn, pfx##2, sfx
    [all...]
  /frameworks/av/media/codec2/core/include/
_C2MacroUtils.h 79 // macros that convert _1, _2, _3, ... to fn(_1, arg), fn(_2, arg), fn(_3, arg), ...
80 #define _C2_MAP_64(fn, arg, head, ...) fn(head, arg), _C2_MAP_63(fn, arg, ##__VA_ARGS__)
81 #define _C2_MAP_63(fn, arg, head, ...) fn(head, arg), _C2_MAP_62(fn, arg, ##__VA_ARGS__)
82 #define _C2_MAP_62(fn, arg, head, ...) fn(head, arg), _C2_MAP_61(fn, arg, ##__VA_ARGS__
    [all...]
  /external/clang/test/SemaTemplate/
nested-incomplete-class.cpp 7 bar fn() { function in struct:foo
19 void fn() { function
20 foo<int>().fn();
  /external/python/cpython2/RISCOS/
unixstuff.h 7 int isatty(int fn);
11 int isdir(char *fn);
12 int isfile(char *fn);
13 int object_exists(char *fn);
  /external/u-boot/drivers/fpga/
spartan3.c 106 xilinx_spartan3_slave_parallel_fns *fn = desc->iface_fns; local
109 __FUNCTION__, fn);
111 if (fn) {
132 __FUNCTION__, &fn, fn, fn->pre, fn->pgm, fn->init, fn->err,
133 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy
260 xilinx_spartan3_slave_parallel_fns *fn = desc->iface_fns; local
308 xilinx_spartan3_slave_serial_fns *fn = desc->iface_fns; local
    [all...]
spartan2.c 102 xilinx_spartan2_slave_parallel_fns *fn = desc->iface_fns; local
105 __FUNCTION__, fn);
107 if (fn) {
128 __FUNCTION__, &fn, fn, fn->pre, fn->pgm, fn->init, fn->err,
129 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy
254 xilinx_spartan2_slave_parallel_fns *fn = desc->iface_fns; local
302 xilinx_spartan2_slave_serial_fns *fn = desc->iface_fns; local
    [all...]
virtex2.c 160 xilinx_virtex2_slave_selectmap_fns *fn = desc->iface_fns; local
163 __FUNCTION__, __LINE__, fn);
165 if (fn) {
180 &fn, fn, fn->pre, fn->pgm, fn->init, fn->err);
189 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata
359 xilinx_virtex2_slave_selectmap_fns *fn = desc->iface_fns; local
    [all...]
  /external/clang/test/CodeGen/
vlt_to_pointer.c 15 int test(int n, int (*(*fn)(void))[n]) {
16 return (*fn())[0];
24 int (*fn[m])(void);
25 return f(&m, &d) + test(m, &fn);
  /external/compiler-rt/test/cfi/icall/
external-call.c 17 double (*fn)(double);
19 fn = sin;
21 fn = cos;
23 fn(atof(argv[2]));
  /external/ltp/include/
tst_clone.h 28 int ltp_clone(unsigned long flags, int (*fn)(void *arg), void *arg,
30 int ltp_clone7(unsigned long flags, int (*fn)(void *arg), void *arg,
32 int ltp_clone_malloc(unsigned long clone_flags, int (*fn)(void *arg),
34 int ltp_clone_quick(unsigned long clone_flags, int (*fn)(void *arg),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
pytree_idempotency.py 28 fn = "example.py"
29 tree = dr.parse_file(fn, debug=True)
30 if not diff(fn, tree):
42 fn = mod.__file__
43 if fn.endswith(".pyc"):
44 fn = fn[:-1]
45 if not fn.endswith(".py"):
47 print >>sys.stderr, "Parsing", fn
48 tree = dr.parse_file(fn, debug=True)
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/
pytree_idempotency.py 28 fn = "example.py"
29 tree = dr.parse_file(fn, debug=True)
30 if not diff(fn, tree):
42 fn = mod.__file__
43 if fn.endswith(".pyc"):
44 fn = fn[:-1]
45 if not fn.endswith(".py"):
47 print >>sys.stderr, "Parsing", fn
48 tree = dr.parse_file(fn, debug=True
    [all...]
  /external/tensorflow/tensorflow/python/util/
function_utils.py 30 def _is_bounded_method(fn):
31 _, fn = tf_decorator.unwrap(fn)
32 return tf_inspect.ismethod(fn) and (fn.__self__ is not None)
39 def fn_args(fn):
43 fn: Function, or function-like object (e.g., result of `functools.partial`).
51 if isinstance(fn, functools.partial):
52 args = fn_args(fn.func)
53 args = [a for a in args[len(fn.args):] if a not in (fn.keywords or [])
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/opt/dominator_tree/
generated.cpp 44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn,
48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x),
49 spvtest::GetBasicBlock(fn, y)));
62 const Function* fn, uint32_t x, uint32_t y) {
65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x),
66 spvtest::GetBasicBlock(fn, y)));
68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x),
69 spvtest::GetBasicBlock(fn, y)));
72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y),
73 spvtest::GetBasicBlock(fn, x)))
116 const Function* fn = spvtest::GetFunction(module, 1); local
282 const Function* fn = spvtest::GetFunction(module, 1); local
403 const Function* fn = spvtest::GetFunction(module, 1); local
600 const Function* fn = spvtest::GetFunction(module, 1); local
731 const Function* fn = spvtest::GetFunction(module, 1); local
835 const Function* fn = spvtest::GetFunction(module, 1); local
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/dominator_tree/
generated.cpp 44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn,
48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x),
49 spvtest::GetBasicBlock(fn, y)));
62 const Function* fn, uint32_t x, uint32_t y) {
65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x),
66 spvtest::GetBasicBlock(fn, y)));
68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x),
69 spvtest::GetBasicBlock(fn, y)));
72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y),
73 spvtest::GetBasicBlock(fn, x)))
116 const Function* fn = spvtest::GetFunction(module, 1); local
282 const Function* fn = spvtest::GetFunction(module, 1); local
403 const Function* fn = spvtest::GetFunction(module, 1); local
600 const Function* fn = spvtest::GetFunction(module, 1); local
731 const Function* fn = spvtest::GetFunction(module, 1); local
835 const Function* fn = spvtest::GetFunction(module, 1); local
    [all...]
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
JcDnld.cpp 37 static const char fn[] = "JCDNLD_Init"; local
40 ALOGD("%s: enter", fn);
56 ALOGE("%s: failed", fn);
66 ALOGE("%s:Open DWP communication is failed", fn);
71 ALOGE("%s:Open DWP communication is success", fn);
77 ALOGE("%s: NULL DWP channel", fn);
95 static const char fn[] = "JCDNLD_StartDownload"; local
100 ALOGE("%s: Exit; status=0x0%X", fn, status);
115 static const char fn[] = "JCDNLD_DeInit"; local
117 ALOGD("%s: enter", fn);
    [all...]
  /external/u-boot/drivers/pinctrl/renesas/
sh_pfc.h 295 * - fn: Function name, referring to a field in the IPSR
297 #define PINMUX_IPSR_NOGP(ipsr, fn) \
298 PINMUX_DATA(fn##_MARK, FN_##fn)
305 * - fn: Function name, also referring to the IPSR field
307 #define PINMUX_IPSR_GPSR(ipsr, fn) \
308 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr)
315 * - fn: Function name, also referring to the IPSR field
318 #define PINMUX_IPSR_NOGM(ipsr, fn, msel)
    [all...]
  /external/clang/test/CodeGenCXX/
destructor-debug-info.cpp 12 void fn(B b);
18 fn (b1);

Completed in 4001 milliseconds

1 2 3 4 5 6 7 8 91011>>