Home
last modified time | relevance | path

Searched refs:lgamma_r (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm-project/libclc/generic/include/clc/math/
Dlgamma_r.inc1 _CLC_OVERLOAD _CLC_DECL __CLC_GENTYPE lgamma_r(__CLC_GENTYPE x, global __CLC_INTN *iptr);
2 _CLC_OVERLOAD _CLC_DECL __CLC_GENTYPE lgamma_r(__CLC_GENTYPE x, local __CLC_INTN *iptr);
3 _CLC_OVERLOAD _CLC_DECL __CLC_GENTYPE lgamma_r(__CLC_GENTYPE x, private __CLC_INTN *iptr);
Dlgamma_r.h1 #define __CLC_BODY <clc/math/lgamma_r.inc>
/external/rust/crates/libm/src/math/
Dlgamma.rs1 use super::lgamma_r;
4 lgamma_r(x).0 in lgamma()
Dmod.rs136 mod lgamma_r; module
250 pub use self::lgamma_r::lgamma_r;
Dlgamma_r.rs167 pub fn lgamma_r(mut x: f64) -> (f64, i32) { in lgamma_r() function
/external/llvm-project/libclc/generic/lib/math/
Dlgamma_r.inc26 _CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE lgamma_r(__CLC_GENTYPE x, __CLC_ADDRSPACE __CLC_INTN *iptr) {
28 __CLC_GENTYPE ret = lgamma_r(x, &private_iptr);
Dlgamma.cl29 return lgamma_r(x, &s);
39 return lgamma_r(x, &s);
Dlgamma_r.cl113 _CLC_OVERLOAD _CLC_DEF float lgamma_r(float x, private int *signp) {
230 _CLC_V_V_VP_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, lgamma_r, float, private, int)
243 // lgamma_r(x, i)
379 _CLC_OVERLOAD _CLC_DEF double lgamma_r(double x, private int *ip) {
486 _CLC_V_V_VP_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, double, lgamma_r, double, private, int)
491 #define __CLC_BODY <lgamma_r.inc>
496 #define __CLC_BODY <lgamma_r.inc>
/external/llvm-project/libclc/spirv/lib/
DSOURCES58 ../../generic/lib/math/lgamma_r.cl
/external/llvm-project/libclc/spirv64/lib/
DSOURCES58 ../../generic/lib/math/lgamma_r.cl
/external/llvm-project/libclc/generic/lib/
DSOURCES137 math/lgamma_r.cl
/external/deqp-deps/SPIRV-Tools/test/
Dext_inst.opencl_test.cpp137 CASE2(Lgamma_r, lgamma_r),
/external/OpenCL-CTS/test_conformance/math_brute_force/
Dfunction_list.cpp264 ENTRY(lgamma_r, INFINITY, INFINITY, FTZ_OFF, unaryF_two_results_i),
Dmain.cpp272 ADD_TEST(ldexp), ADD_TEST(lgamma), ADD_TEST(lgamma_r),
/external/swiftshader/third_party/SPIRV-Tools/test/
Dext_inst.opencl_test.cpp137 CASE2(Lgamma_r, lgamma_r),
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/
Dext_inst.opencl_test.cpp137 CASE2(Lgamma_r, lgamma_r),
/external/llvm-project/clang/lib/Headers/
Dopencl-c.h7655 float __ovld lgamma_r(float x, int *signp);
7656 float2 __ovld lgamma_r(float2 x, int2 *signp);
7657 float3 __ovld lgamma_r(float3 x, int3 *signp);
7658 float4 __ovld lgamma_r(float4 x, int4 *signp);
7659 float8 __ovld lgamma_r(float8 x, int8 *signp);
7660 float16 __ovld lgamma_r(float16 x, int16 *signp);
7662 double __ovld lgamma_r(double x, int *signp);
7663 double2 __ovld lgamma_r(double2 x, int2 *signp);
7664 double3 __ovld lgamma_r(double3 x, int3 *signp);
7665 double4 __ovld lgamma_r(double4 x, int4 *signp);
[all …]
/external/clang/lib/Headers/
Dopencl-c.h8581 float __ovld lgamma_r(float x, int *signp);
8582 float2 __ovld lgamma_r(float2 x, int2 *signp);
8583 float3 __ovld lgamma_r(float3 x, int3 *signp);
8584 float4 __ovld lgamma_r(float4 x, int4 *signp);
8585 float8 __ovld lgamma_r(float8 x, int8 *signp);
8586 float16 __ovld lgamma_r(float16 x, int16 *signp);
8588 double __ovld lgamma_r(double x, int *signp);
8589 double2 __ovld lgamma_r(double2 x, int2 *signp);
8590 double3 __ovld lgamma_r(double3 x, int3 *signp);
8591 double4 __ovld lgamma_r(double4 x, int4 *signp);
[all …]
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsImpl.h139 return ::lgamma_r(x, &signgam);
/external/llvm-project/clang/lib/Sema/
DOpenCLBuiltins.td502 foreach name = ["frexp", "lgamma_r"] in {
518 foreach name = ["frexp", "lgamma_r"] in {
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc1808 TEST(MemorySanitizer, lgamma_r) { in TEST() argument
1810 double res = lgamma_r(1.1, &sgn); in TEST()
/external/llvm-project/compiler-rt/lib/msan/tests/
Dmsan_test.cpp1953 TEST(MemorySanitizer, lgamma_r) { in TEST() argument
1955 double res = lgamma_r(1.1, &sgn); in TEST()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc4266 INTERCEPTOR(double, lgamma_r, double x, int *signp) {
4268 COMMON_INTERCEPTOR_ENTER(ctx, lgamma_r, x, signp);
4272 double res = REAL(lgamma_r)(x, signp);
4287 COMMON_INTERCEPT_FUNCTION(lgamma_r); \
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc5109 INTERCEPTOR(double, lgamma_r, double x, int *signp) {
5111 COMMON_INTERCEPTOR_ENTER(ctx, lgamma_r, x, signp);
5115 double res = REAL(lgamma_r)(x, signp);
5130 COMMON_INTERCEPT_FUNCTION(lgamma_r); \
/external/libcxx/include/
Drandom4004 extern "C" double lgamma_r(double, int *);
4012 return lgamma_r(__d, &__sign);

12