Home
last modified time | relevance | path

Searched refs:igamma (Results 1 – 19 of 19) sorted by relevance

/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
DCudaSpecialFunctions.h108 using numext::igamma;
110 igamma(a.x, x.x),
111 igamma(a.y, x.y),
112 igamma(a.z, x.z),
113 igamma(a.w, x.w));
119 using numext::igamma;
120 return make_double2(igamma(a.x, x.x), igamma(a.y, x.y));
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsPacketMath.h43 Packet pigamma(const Packet& a, const Packet& x) { using numext::igamma; return igamma(a, x); } in pigamma()
DSpecialFunctionsHalf.h33 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half igamma(const Eigen::half& a, const Eig… in igamma() function
34 return Eigen::half(Eigen::numext::igamma(static_cast<float>(a), static_cast<float>(x))); in igamma()
DSpecialFunctionsFunctors.h28 using numext::igamma; return igamma(a, x); in EIGEN_EMPTY_STRUCT_CTOR()
DSpecialFunctionsArrayAPI.h28 igamma(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) in igamma() function
DSpecialFunctionsImpl.h1543 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(igamma, Scalar)
1544 igamma(const Scalar& a, const Scalar& x) {
1545 return EIGEN_MATHFUNC_IMPL(igamma, Scalar)::run(a, x);
/external/eigen/unsupported/test/
Dspecial_functions.cpp74 ArrayType gamma_a_x = Eigen::igamma(a, x) * a.lgamma().exp(); in array_special_functions()
75 ArrayType gamma_a_m1_x = Eigen::igamma(a_m1, x) * a_m1.lgamma().exp(); in array_special_functions()
120 VERIFY((std::isnan)(numext::igamma(a_s[i], x_s[j]))); in array_special_functions()
122 VERIFY_IS_APPROX(numext::igamma(a_s[i], x_s[j]), igamma_s[i][j]); in array_special_functions()
Dcxx11_tensor_cuda.cu900 gpu_out.device(gpu_device) = gpu_a.igamma(gpu_x); in test_cuda_igamma()
/external/eigen/unsupported/Eigen/
DSpecialFunctions31 * - igamma
/external/syslinux/com32/lib/libpng/
Dpngrutil.c674 png_fixed_point igamma; in png_handle_gAMA() local
716 igamma = (png_fixed_point)png_get_uint_32(buf); in png_handle_gAMA()
718 if (igamma == 0) in png_handle_gAMA()
727 if (PNG_OUT_OF_RANGE(igamma, 45500L, 500)) in png_handle_gAMA()
732 fprintf(stderr, "gamma = (%d/100000)", (int)igamma); in png_handle_gAMA()
739 file_gamma = (float)igamma / (float)100000.0; in png_handle_gAMA()
746 png_set_gAMA_fixed(png_ptr, info_ptr, igamma); in png_handle_gAMA()
993 png_fixed_point igamma; in png_handle_sRGB() local
995 igamma=info_ptr->int_gamma; in png_handle_sRGB()
998 igamma=(png_fixed_point)(info_ptr->gamma * 100000.); in png_handle_sRGB()
[all …]
Dpngwutil.c717 png_uint_32 igamma; in png_write_gAMA() local
723 igamma = (png_uint_32)(file_gamma * 100000.0 + 0.5); in png_write_gAMA()
724 png_save_uint_32(buf, igamma); in png_write_gAMA()
DCHANGES464 Fixed type casting of igamma in pngrutil.c
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox457 \link Eigen::igamma igamma\endlink(a,x);
/external/pdfium/third_party/libpng16/
Dpngrutil.c1112 png_fixed_point igamma; in png_handle_gAMA() local
1139 igamma = png_get_fixed_point(NULL, buf); in png_handle_gAMA()
1141 png_colorspace_set_gamma(png_ptr, &png_ptr->colorspace, igamma); in png_handle_gAMA()
/external/skia/third_party/libpng/
Dpngrutil.c1112 png_fixed_point igamma; in png_handle_gAMA() local
1139 igamma = png_get_fixed_point(NULL, buf); in png_handle_gAMA()
1141 png_colorspace_set_gamma(png_ptr, &png_ptr->colorspace, igamma); in png_handle_gAMA()
/external/libpng/
Dpngrutil.c1114 png_fixed_point igamma; in png_handle_gAMA() local
1141 igamma = png_get_fixed_point(NULL, buf); in png_handle_gAMA()
1143 png_colorspace_set_gamma(png_ptr, &png_ptr->colorspace, igamma); in png_handle_gAMA()
DCHANGES497 Fixed type casting of igamma in pngrutil.c
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h139 igamma(const OtherDerived& other) const { in igamma() function
/external/ImageMagick/coders/
Dpng.c5470 igamma; in ReadMNGImage() local
5472 igamma=mng_get_long(p); in ReadMNGImage()
5473 mng_info->global_gamma=((float) igamma)*0.00001; in ReadMNGImage()