OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tgamma
(Results
1 - 19
of
19
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestTgamma.rs
24
return
tgamma
(in);
28
return
tgamma
(in);
32
return
tgamma
(in);
36
return
tgamma
(in);
CoreMathVerifier.java
111
static native float
tgamma
(float x);
method in class:CoreMathVerifier
[
all
...]
/bionic/libm/upstream-freebsd/lib/msun/src/
s_tgammaf.c
33
* We simply call
tgamma
() rather than bloating the math library with
42
return (
tgamma
(x));
imprecise.c
69
DECLARE_IMPRECISE(
tgamma
);
variable
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/
eval.pass.cpp
63
double x_mean = d.b() * std::
tgamma
(1 + 1/d.a());
64
double x_var = sqr(d.b()) * std::
tgamma
(1 + 2/d.a()) - sqr(x_mean);
65
double x_skew = (sqr(d.b())*d.b() * std::
tgamma
(1 + 3/d.a()) -
68
double x_kurtosis = (sqr(sqr(d.b())) * std::
tgamma
(1 + 4/d.a()) -
107
double x_mean = d.b() * std::
tgamma
(1 + 1/d.a());
108
double x_var = sqr(d.b()) * std::
tgamma
(1 + 2/d.a()) - sqr(x_mean);
109
double x_skew = (sqr(d.b())*d.b() * std::
tgamma
(1 + 3/d.a()) -
112
double x_kurtosis = (sqr(sqr(d.b())) * std::
tgamma
(1 + 4/d.a()) -
151
double x_mean = d.b() * std::
tgamma
(1 + 1/d.a());
152
double x_var = sqr(d.b()) * std::
tgamma
(1 + 2/d.a()) - sqr(x_mean)
[
all
...]
eval_param.pass.cpp
64
double x_mean = p.b() * std::
tgamma
(1 + 1/p.a());
65
double x_var = sqr(p.b()) * std::
tgamma
(1 + 2/p.a()) - sqr(x_mean);
66
double x_skew = (sqr(p.b())*p.b() * std::
tgamma
(1 + 3/p.a()) -
69
double x_kurtosis = (sqr(sqr(p.b())) * std::
tgamma
(1 + 4/p.a()) -
109
double x_mean = p.b() * std::
tgamma
(1 + 1/p.a());
110
double x_var = sqr(p.b()) * std::
tgamma
(1 + 2/p.a()) - sqr(x_mean);
111
double x_skew = (sqr(p.b())*p.b() * std::
tgamma
(1 + 3/p.a()) -
114
double x_kurtosis = (sqr(sqr(p.b())) * std::
tgamma
(1 + 4/p.a()) -
154
double x_mean = p.b() * std::
tgamma
(1 + 1/p.a());
155
double x_var = sqr(p.b()) * std::
tgamma
(1 + 2/p.a()) - sqr(x_mean)
[
all
...]
/bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_tgamma.c
75
* Accuracy:
tgamma
(x) is accurate to within
129
tgamma
(x)
function
209
/* Return r*
tgamma
(y). */
312
y =
tgamma
(y);
314
y = -x*
tgamma
(-x);
/external/clang/test/CodeGen/
libcall-declarations.c
175
double
tgamma
(double);
297
F(
tgamma
), F(tgammaf), F(tgammal), F(trunc), F(truncf),
474
// CHECK-NOERRNO: declare double @
tgamma
(double) [[NUW]]
/bionic/libm/include/
math.h
277
double
tgamma
(double);
/external/libcxx/test/numerics/c.math/
cmath.disabled.cpp
[
all
...]
/external/clang/lib/Headers/
tgmath.h
1191
//
tgamma
1199
__tg_tgamma(double __x) {return
tgamma
(__x);}
1205
#undef
tgamma
macro
1206
#define
tgamma
(__x) __tg_tgamma(__tg_promote1((__x))(__x))
macro
/external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp
596
static_assert((std::is_same<decltype(
tgamma
((double)0)), double>::value), "");
599
assert(
tgamma
(1) == 1);
/external/ltrace/etc/
libm.so.conf
216
double
tgamma
(double);
/development/ndk/platforms/android-13/include/
math.h
284
double
tgamma
(double) __NDK_FPABI_MATH__;
/development/ndk/platforms/android-18/include/
math.h
285
double
tgamma
(double) __NDK_FPABI_MATH__;
/development/ndk/platforms/android-3/include/
math.h
283
double
tgamma
(double) __NDK_FPABI_MATH__;
/development/ndk/platforms/android-9/include/
math.h
283
double
tgamma
(double) __NDK_FPABI_MATH__;
/development/ndk/platforms/android-L/include/
math.h
277
double
tgamma
(double) __NDK_FPABI_MATH__;
/bionic/tests/
math_test.cpp
1197
TEST(math,
tgamma
) {
1198
ASSERT_DOUBLE_EQ(24.0,
tgamma
(5.0));
[
all
...]
Completed in 445 milliseconds