HomeSort by relevance Sort by last modified time
    Searched refs:gamma (Results 101 - 125 of 502) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite_2.h 229 FLOAT gamma,
306 FLOAT gamma,
333 FLOAT gamma,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_urllib.py 431 self.assertEqual(urllib.quote_plus('alpha+beta gamma'),
432 'alpha%2Bbeta+gamma')
433 self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'),
434 'alpha+beta+gamma')
  /external/libpng/contrib/gregbook/
wpng.c 186 wpng_info.gamma = 0.0;
192 * looks correct on the user's display system, its file gamma is the
208 * get the "gamma" value, so we do it the hard way */
259 } else if (!strncmp(*argv, "-gamma", 2)) {
263 wpng_info.gamma = atof(*argv);
264 if (wpng_info.gamma <= 0.0)
266 else if (wpng_info.gamma > 1.01)
405 "Usage: %s [-gamma exp] [-bgcolor bg] [-text] [-time] [-interlace] pnmfile\n"
406 "or: ... | %s [-gamma exp] [-bgcolor bg] [-text] [-time] [-interlace] | ...\n"
407 " exp \ttransfer-function exponent (``gamma'') of the image in\n
    [all...]
  /external/skia/src/core/
SkColorSpace.cpp 143 sk_sp<SkColorSpace> SkColorSpace::MakeRGB(RenderTargetGamma gamma, const SkMatrix44& toXYZD50) {
144 switch (gamma) {
186 sk_sp<SkColorSpace> SkColorSpace::MakeRGB(RenderTargetGamma gamma, Gamut gamut) {
189 return SkColorSpace::MakeRGB(gamma, toXYZD50);
367 // If we have a named gamma, write the enum and the matrix.
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_acelp.h 117 int16 gamma, /* (i) Q15 : Spectral expansion factor. */
  /libcore/ojluni/src/main/native/
fdlibm.h 146 extern double gamma __P((double));
193 * Reentrant version of gamma & lgamma; passes signgam back by reference
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_urllib.py 554 self.assertEqual(urllib.quote_plus('alpha+beta gamma'),
555 'alpha%2Bbeta+gamma')
556 self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'),
557 'alpha+beta+gamma')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_urllib.py 554 self.assertEqual(urllib.quote_plus('alpha+beta gamma'),
555 'alpha%2Bbeta+gamma')
556 self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'),
557 'alpha+beta+gamma')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 554 self.assertEqual(urllib.quote_plus('alpha+beta gamma'),
555 'alpha%2Bbeta+gamma')
556 self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'),
557 'alpha+beta+gamma')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 554 self.assertEqual(urllib.quote_plus('alpha+beta gamma'),
555 'alpha%2Bbeta+gamma')
556 self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'),
557 'alpha+beta+gamma')
    [all...]
  /external/ImageMagick/coders/
cin.c 196 gamma;
640 cin.origination.gamma=ReadBlobFloat(image);
642 if (IsFloatDefined(cin.origination.gamma) != MagickFalse)
643 image->gamma=cin.origination.gamma;
194 gamma; member in struct:_CINOriginationInfo
    [all...]
rla.c 118 gamma[16+1],
227 count=ReadBlob(image,16,(unsigned char *) rla_info.gamma);
116 gamma[16+1], member in struct:_RLAInfo
  /prebuilts/go/darwin-x86/src/math/
atan.go 48 // source listings for the gamma function and the incomplete beta
tanh.go 50 // source listings for the gamma function and the incomplete beta
lgamma.go 8 Floating-point logarithm of the Gamma function.
26 // Reentrant version of the logarithm of the Gamma function
27 // with user provided pointer for the sign of Gamma(x).
31 // Since gamma(1+s)=s*gamma(s), for x in [0,8], we may
71 // 4. For negative x, since (G is gamma function)
77 // lgamma(x) = log(|Gamma(x)|)
166 // Lgamma returns the natural logarithm and sign (-1 or +1) of Gamma(x).
  /prebuilts/go/darwin-x86/src/math/cmplx/
pow.go 25 // source listings for the gamma function and the incomplete beta
sqrt.go 25 // source listings for the gamma function and the incomplete beta
  /prebuilts/go/linux-x86/src/math/
atan.go 48 // source listings for the gamma function and the incomplete beta
tanh.go 50 // source listings for the gamma function and the incomplete beta
lgamma.go 8 Floating-point logarithm of the Gamma function.
26 // Reentrant version of the logarithm of the Gamma function
27 // with user provided pointer for the sign of Gamma(x).
31 // Since gamma(1+s)=s*gamma(s), for x in [0,8], we may
71 // 4. For negative x, since (G is gamma function)
77 // lgamma(x) = log(|Gamma(x)|)
166 // Lgamma returns the natural logarithm and sign (-1 or +1) of Gamma(x).
  /prebuilts/go/linux-x86/src/math/cmplx/
pow.go 25 // source listings for the gamma function and the incomplete beta
sqrt.go 25 // source listings for the gamma function and the incomplete beta
  /external/ImageMagick/www/api/
histogram.php 148 const double white,const double gamma,ExceptionInfo *exception)
166 <dt>gamma</dt>
167 <dd>the gamma. </dd>
  /external/opencv/cxcore/src/
cxarithm.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_api.c 139 * Apply gamma correction to an intensity value in [0..max]. Return the
143 gamma_adjust( GLfloat gamma, GLint value, GLint max )
145 if (gamma == 1.0) {
150 return IROUND_POS((GLfloat) max * pow(x, 1.0F/gamma));
756 char *gamma; local
792 gamma = _mesa_getenv("MESA_GAMMA");
793 if (gamma) {
795 sscanf( gamma, "%f %f %f", &v->RedGamma, &v->GreenGamma, &v->BlueGamma );
    [all...]

Completed in 1553 milliseconds

1 2 3 45 6 7 8 91011>>