HomeSort by relevance Sort by last modified time
    Searched refs:gamma (Results 176 - 200 of 401) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/opencv/cxcore/src/
cxarithm.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_api.c 142 * Apply gamma correction to an intensity value in [0..max]. Return the
146 gamma_adjust( GLfloat gamma, GLint value, GLint max )
148 if (gamma == 1.0) {
153 return IROUND_POS((GLfloat) max * pow(x, 1.0F/gamma));
759 char *gamma; local
795 gamma = getenv("MESA_GAMMA");
796 if (gamma) {
798 sscanf( gamma, "%f %f %f", &v->RedGamma, &v->GreenGamma, &v->BlueGamma );
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_random.py 462 def gamma(z, sqrt2pi=(2.0*pi)**0.5): function
465 return pi / sin(pi*z) / gamma(1.0-z)
511 (g.weibullvariate, (1.0, 3.0), gamma(1+1/3.0),
512 gamma(1+2/3.0)-gamma(1+1/3.0)**2) ]:
  /external/ImageMagick/MagickCore/
resample.c     [all...]
resize.c 2518 gamma, local
2734 gamma, local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
p224-64.c 644 p224_felem delta, gamma, beta, alpha, ftmp, ftmp2; local
653 // gamma = y^2
655 p224_felem_reduce(gamma, tmp);
657 // beta = x*gamma
658 p224_felem_mul(tmp, x_in, gamma);
682 // z' = (y + z)^2 - gamma - delta
683 p224_felem_sum(delta, gamma);
694 // y' = alpha*(4*beta - x') - 8*gamma^2
701 p224_felem_square(tmp2, gamma);
    [all...]
  /external/python/cpython2/Lib/test/
test_random.py 475 def gamma(z, sqrt2pi=(2.0*pi)**0.5): function
478 return pi / sin(pi*z) / gamma(1.0-z)
526 (g.weibullvariate, (1.0, 3.0), gamma(1+1/3.0),
527 gamma(1+2/3.0)-gamma(1+1/3.0)**2) ]:
  /external/skia/src/codec/
SkPngCodec.cpp 338 // This is necessary because the gAMA chunk actually stores 1/gamma.
380 png_fixed_point gamma; local
399 if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
403 fn.fG = png_inverted_fixed_point_to_float(gamma);
408 // Default to sRGB gamma if the image has color space information,
409 // but does not specify gamma.
413 // Last, check for gamma.
414 if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
418 fn.fG = png_inverted_fixed_point_to_float(gamma);
    [all...]
  /external/skqp/src/codec/
SkPngCodec.cpp 338 // This is necessary because the gAMA chunk actually stores 1/gamma.
380 png_fixed_point gamma; local
399 if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
403 fn.fG = png_inverted_fixed_point_to_float(gamma);
408 // Default to sRGB gamma if the image has color space information,
409 // but does not specify gamma.
413 // Last, check for gamma.
414 if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) {
418 fn.fG = png_inverted_fixed_point_to_float(gamma);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_random.py 470 def gamma(z, sqrt2pi=(2.0*pi)**0.5): function
473 return pi / sin(pi*z) / gamma(1.0-z)
521 (g.weibullvariate, (1.0, 3.0), gamma(1+1/3.0),
522 gamma(1+2/3.0)-gamma(1+1/3.0)**2) ]:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_random.py 470 def gamma(z, sqrt2pi=(2.0*pi)**0.5): function
473 return pi / sin(pi*z) / gamma(1.0-z)
521 (g.weibullvariate, (1.0, 3.0), gamma(1+1/3.0),
522 gamma(1+2/3.0)-gamma(1+1/3.0)**2) ]:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_random.py 470 def gamma(z, sqrt2pi=(2.0*pi)**0.5): function
473 return pi / sin(pi*z) / gamma(1.0-z)
521 (g.weibullvariate, (1.0, 3.0), gamma(1+1/3.0),
522 gamma(1+2/3.0)-gamma(1+1/3.0)**2) ]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_random.py 470 def gamma(z, sqrt2pi=(2.0*pi)**0.5): function
473 return pi / sin(pi*z) / gamma(1.0-z)
521 (g.weibullvariate, (1.0, 3.0), gamma(1+1/3.0),
522 gamma(1+2/3.0)-gamma(1+1/3.0)**2) ]:
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 426 RealScalar gamma = dj*alpha + swj2; local
435 if(gamma != 0)
436 mat.col(j).tail(rs) += (sigma*numext::conj(wj)/gamma)*w.tail(rs);
LLT.h 276 RealScalar gamma = dj*beta + swj2; local
290 if(gamma != 0)
291 mat.col(j).tail(rs) = (nLjj/Ljj) * mat.col(j).tail(rs) + (nLjj * sigma*numext::conj(wj)/gamma)*temp.tail(rs);
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 265 float gamma = 1.0f; local
268 gamma = 2.2f;
270 EMIT_RS_FLOAT(svga, gamma, OUTPUTGAMMA, fail);
  /frameworks/base/graphics/java/android/graphics/
ColorSpace.java     [all...]
  /external/libpng/
pngtest.c 1131 png_fixed_point gamma; local
1154 double gamma; local
    [all...]
  /external/syslinux/com32/lib/libpng/
pngtest.c 935 png_fixed_point gamma; local
937 if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma))
938 png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
957 double gamma; local
959 if (png_get_gAMA(read_ptr, read_info_ptr, &gamma))
960 png_set_gAMA(write_ptr, write_info_ptr, gamma);
    [all...]
  /external/tensorflow/tensorflow/python/ops/
image_ops_impl.py     [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PairingSession.java 539 // Display gamma
541 byte[] gamma = mChallenge.getGamma(nonce);
542 mListener.onPerformOutputDeviceRole(this, gamma);
  /external/libxcam/modules/ocl/
cl_bayer_basic_handler.cpp 246 CLBayerBasicImageHandler::set_gamma_table (const XCam3aResultGammaTable &gamma)
249 _gamma_table[i] = (float)gamma.table[i] / 256.0f;
  /external/skia/src/core/
SkConvertPixels.cpp 260 pipeline.append(SkRasterPipeline::gamma, &srcFn.fG);
292 pipeline.append(SkRasterPipeline::gamma, &dstFn.fG);
  /external/skqp/src/core/
SkConvertPixels.cpp 260 pipeline.append(SkRasterPipeline::gamma, &srcFn.fG);
292 pipeline.append(SkRasterPipeline::gamma, &dstFn.fG);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 250 /* Error and gamma functions. */
259 /* True gamma function. */
266 __MATHCALL (gamma,, (_Mdouble_));

Completed in 1152 milliseconds

1 2 3 4 5 6 78 91011>>