HomeSort by relevance Sort by last modified time
    Searched refs:fn (Results 1 - 25 of 642) 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...]
s_llrint.c 7 #define fn llrint macro
s_llrintf.c 7 #define fn llrintf macro
s_llrintl.c 7 #define fn llrintl macro
s_lrintf.c 7 #define fn lrintf macro
s_lrintl.c 7 #define fn lrintl macro
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
testutil.h 39 extern "C" void RunThread(void (*fn)());
44 extern "C" void RunManyThreads(void (*fn)(), int count);
49 // it's because the one client of this fn wanted to specify stacksize. :-) )
53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
testutil.h 39 extern "C" void RunThread(void (*fn)());
44 extern "C" void RunManyThreads(void (*fn)(), int count);
49 // it's because the one client of this fn wanted to specify stacksize. :-) )
53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
  /external/compiler-rt/lib/msan/tests/
msandr_test_so.h 19 int dso_callfn(int (*fn)(void));
20 int dso_callfn1(int (*fn)(long long, long long, long long)); //NOLINT
21 int dso_stack_store(void (*fn)(int*, int*), int x);
msandr_test_so.cc 22 int dso_callfn(int (*fn)(void)) {
23 volatile int x = fn();
27 int dso_callfn1(int (*fn)(long long, long long, long long)) { //NOLINT
28 volatile int x = fn(1, 2, 3);
32 int dso_stack_store(void (*fn)(int*, int*), int x) {
34 fn(&x, &y);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
mem-memcpy-arch.h 4 #define MEMCPY_FN(fn, name, desc) \
5 extern void *fn(void *, const void *, size_t);
mem-memset-arch.h 4 #define MEMSET_FN(fn, name, desc) \
5 extern void *fn(void *, int, size_t);
  /development/ndk/platforms/android-3/include/linux/
init.h 43 #define __define_initcall(level,fn) static initcall_t __initcall_##fn __attribute_used__ __attribute__((__section__(".initcall" level ".init"))) = fn
45 #define core_initcall(fn) __define_initcall("1",fn)
46 #define postcore_initcall(fn) __define_initcall("2",fn)
47 #define arch_initcall(fn) __define_initcall("3",fn)
48 #define subsys_initcall(fn) __define_initcall("4",fn
    [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/chromium_org/third_party/skia/src/core/
SkLazyFnPtr.h 45 F fn = (F)SK_ANNOTATE_UNPROTECTED_READ(fPtr); local
46 if (fn != NULL) {
47 return fn;
51 fn = Choose();
54 F prev = (F)sk_atomic_cas(&fPtr, NULL, (void*)fn);
57 // If prev == NULL, we did write fn to fPtr.
58 return prev != NULL ? prev : fn;
  /external/chromium_org/third_party/npapi/npspy/windows/
windowsxx.h 42 #define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) \
43 (fn)((hwnd), (int)(wParam), (LPNMHDR)lParam)
  /external/clang/test/CodeGenCXX/
destructor-debug-info.cpp 12 void fn(B b);
18 fn (b1);
new-array-init.cpp 4 void fn(int n) { function
  /external/clang/test/SemaCXX/
fntype-decl.cpp 4 typedef void fn(int); typedef
5 fn f; // expected-note {{previous declaration is here}}
  /bionic/libc/bionic/
lfs64_support.cpp 31 int (*fn)(const char*, const struct stat64*, int), int nopenfd) {
32 return ftw(dirpath, reinterpret_cast<ftw_fn>(fn), nopenfd);
36 int (*fn)(const char*, const struct stat64*, int, struct FTW*),
38 return nftw(dirpath, reinterpret_cast<nftw_fn>(fn), nopenfd, flags);
  /external/chromium_org/third_party/npapi/npspy/extern/java/
zip.h 52 zip_get(zip_t *zip, const char *fn, void HUGEP *buf, int32_t len);
55 zip_open(const char *fn);
58 zip_stat(zip_t *zip, const char *fn, struct stat *sbuf);
  /external/chromium_org/third_party/re2/util/
test.cc 14 void (*fn)(void); member in struct:Test
21 void RegisterTest(void (*fn)(void), const char *name) {
22 tests[ntests].fn = fn;
41 tests[i].fn();

Completed in 1039 milliseconds

1 2 3 4 5 6 7 8 91011>>