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

1234567891011>>

/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/v8/test/mjsunit/
H A Dfunction-named-self-reference.js30 var fn = function fn(val) { function
33 %OptimizeFunctionOnNextCall(fn);
36 var res = fn((val + 1) << 1);
44 var res = fn();
/external/linux-tools-perf/src/tools/perf/bench/
H A Dmem-memcpy-arch.h4 #define MEMCPY_FN(fn, name, desc) \
5 extern void *fn(void *, const void *, size_t);
H A Dmem-memset-arch.h4 #define MEMSET_FN(fn, name, desc) \
5 extern void *fn(void *, int, size_t);
/external/clang/test/SemaTemplate/
H A Dnested-incomplete-class.cpp7 bar fn() { function in struct:foo
19 void fn() { function
20 foo<int>().fn();
/external/v8/test/webkit/
H A DtoString-prefix-postfix-preserve-parens.js108 function testToString(fn) {
111 shouldBe("unevalf(eval(unevalf("+fn+")))", "unevalf(" + fn + ")");
116 shouldBeTrue("/.*\\(+x\\)*, y\\)/.test(unevalf("+fn+"))");
120 function testToStringAndRTFailure(fn)
122 testToString(fn);
125 shouldThrow(""+fn+ "(1, 2, 3);");
128 shouldThrow("eval(unevalf("+fn+ "))(1, 2, 3);");
131 function testToStringAndReturn(fn, p1, p2, retval)
134 testToString(fn);
[all...]
H A DtoString-elision-trailing-comma.js97 function testToStringAndLength(fn, length, lastElement)
100 shouldBe(""+ fn +"().length", "" + length);
103 shouldBe(""+ fn +"()[" + length +"-1]", "" + lastElement);
107 shouldBe("unevalf(eval(unevalf("+fn+")))", "unevalf(" + fn + ")");
111 shouldBe("eval(unevalf("+fn+"))().length", ""+length);
112 shouldBe("eval(unevalf("+fn+"))()[" + length +"-1]", ""+lastElement);
/external/valgrind/memcheck/tests/
H A Dwrap1.c20 OrigFn fn; local
21 VALGRIND_GET_ORIG_FN(fn);
23 CALL_FN_v_v(fn);
H A Dwrap7.c16 OrigFn fn; local
17 VALGRIND_GET_ORIG_FN(fn);
19 CALL_FN_v_v(fn);
H A Dthreadname_xml.stderr.exp40 <fn>bad_things</fn>
48 <fn>main</fn>
59 <fn>malloc</fn>
67 <fn>bad_things</fn>
75 <fn>main</fn>
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-267.js31 function taint(fn){var v = fn(); eval("taint"); return v; }
/external/clang/test/CodeGen/
H A Dvlt_to_pointer.c15 int test(int n, int (*(*fn)(void))[n]) { argument
16 return (*fn())[0];
24 int (*fn[m])(void);
25 return f(&m, &d) + test(m, &fn);
/external/valgrind/helgrind/tests/
H A Dtc19_shadowmem.c284 void*(*fn)(void*) = info->child;
288 if (wot == 0) return fn(info);
290 if (wot == 1) return fn(info);
292 if (wot == 2) return fn(info);
294 if (wot == 3) return fn(info);
296 if (wot == 4) return fn(info);
298 if (wot == 5) return fn(info);
300 if (wot == 6) return fn(info);
302 if (wot == 7) return fn(info);
304 if (wot == 8) return fn(inf
[all...]
/external/skia/src/core/
H A DSkLazyFnPtr.h44 F fn = (F)sk_atomic_load(&fPtr, sk_memory_order_relaxed); local
45 if (fn != NULL) {
46 return fn;
50 fn = Choose();
53 F prev = (F)sk_atomic_cas(&fPtr, NULL, (void*)fn);
56 // If prev == NULL, we did write fn to fPtr.
57 return prev != NULL ? prev : fn;
/external/v8/test/promises-aplus/lib/
H A Dglobal.js36 function PostMicrotask(fn) {
39 fn();
45 setInterval = function(fn, delay) {
53 fn();
68 setTimeout = function(fn, delay) {
70 fn();
/external/valgrind/drd/
H A Ddrd_qtcore_intercepts.c91 OrigFn fn; local
92 VALGRIND_GET_ORIG_FN(fn);
95 CALL_FN_W_WW(ret, fn, mutex, mode);
106 OrigFn fn; local
107 VALGRIND_GET_ORIG_FN(fn);
110 CALL_FN_W_WW(ret, fn, mutex, mode);
120 OrigFn fn; local
121 VALGRIND_GET_ORIG_FN(fn);
124 CALL_FN_W_W(ret, fn, mutex);
134 OrigFn fn; local
148 OrigFn fn; local
162 OrigFn fn; local
178 OrigFn fn; local
193 OrigFn fn; local
[all...]
H A Ddrd_darwin_intercepts.c45 OrigFn fn; local
47 VALGRIND_GET_ORIG_FN(fn);
50 CALL_FN_W_WW(res, fn, imageLoaderCache, lazyBindingInfoOffset);
/external/clang/test/CodeGenCXX/
H A Ddestructor-debug-info.cpp12 void fn(B b);
18 fn (b1);
H A Dnew-array-init.cpp4 void fn(int n) { function
/external/clang/test/SemaCXX/
H A Dfntype-decl.cpp4 typedef void fn(int); typedef
5 fn f; // expected-note {{previous declaration is here}}
/external/regex-re2/util/
H A Dtest.cc12 void (*fn)(void); member in struct:Test
19 void RegisterTest(void (*fn)(void), const char *name) { argument
20 tests[ntests].fn = fn;
35 tests[i].fn();
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
H A Dtest_reporter.py6 def setup_file(fn, content=None):
8 fn = os.path.join(dir, fn)
10 if os.path.exists(fn):
11 os.unlink(fn)
15 f = open(fn, 'wb')
18 return fn
21 fn = setup_file('test_logger.log')
23 filename=fn,
32 content = open(fn)
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DNonVolatileStore.cpp65 std::string fn = get_storage_location(); local
68 fn.append (filename_prefix);
69 if (fn.length() > 200)
74 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block);
123 std::string fn = get_storage_location(); local
127 fn.append (filename_prefix);
128 if (fn.length() > 200)
133 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block);
198 std::string fn = get_storage_location(); local
208 fn
242 std::string fn = get_storage_location(); local
[all...]
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dregs.h23 #define BITS(obj,st,fn) (((obj) >> (st)) & SUBMASK((fn) - (st)))
24 #define SBITS(obj,st,fn) \
25 ((long) (BITS(obj,st,fn) | ((long) BIT(obj,fn) * ~ SUBMASK(fn - st))))

Completed in 711 milliseconds

1234567891011>>