HomeSort by relevance Sort by last modified time
    Searched full:gamma (Results 151 - 175 of 803) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/test/
README 15 testgamma Tests video device gamma ramp
testpalette.c 157 else if(strcmp(*argv, "-gamma") == 0)
164 " [-hw] [-fullscreen] [-nofade] [-gamma] [-gammaramp]\n");
297 /* Fade linearly in gamma level (lousy) */
300 sdlerr("setting gamma");
303 /* Fade using gamma ramp (better) */
308 sdlerr("setting gamma ramp");
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values-el/
donottranslate-more-keys.xml 24 U+0393: "?" GREEK CAPITAL LETTER GAMMA -->
  /prebuilts/tools/common/m2/internal/junit/junit/3.8.1/
junit-3.8.1.pom 12 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngrtran.c 105 png_warning(png_ptr, "Application must supply a known background gamma");
192 /* If there is no sRGB support this just sets the gamma to the standard
221 * gamma values are passed to the floating point API. This is safe and it
234 png_fixed_error(png_ptr, "gamma value");
259 * who use the inverse of the gamma value accidentally! Since some of these
263 png_error(png_ptr, "output gamma out of expected range");
265 /* The default file gamma is the inverse of the output gamma; the output
266 * gamma may be changed below so get the file value first:
277 * The differences disappear if the input/output ('screen') gamma is 1.0
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkScalerContext.h 43 uint8_t fDeviceGamma; //2.6, (0.0, 4.0) gamma, 0.0 for sRGB
44 uint8_t fPaintGamma; //2.6, (0.0, 4.0) gamma, 0.0 for sRGB
74 * paint and device gamma to be effectively 1.0.
112 //most significant bits to consider when creating mask gamma tables. Two bits
260 // SkMaskGamma::PreBlend converts linear masks to gamma correcting masks.
  /external/qemu/distrib/libpng-1.2.19/
pngset.c 157 double gamma; local
165 png_warning(png_ptr, "Limiting gamma to 21474.83");
166 gamma=21474.83;
169 gamma=file_gamma;
170 info_ptr->gamma = (float)gamma;
172 info_ptr->int_gamma = (int)(gamma*100000.+.5);
175 if(gamma == 0.0)
176 png_warning(png_ptr, "Setting gamma=0");
183 png_fixed_point gamma; local
    [all...]
  /external/skia/src/core/
SkScalerContext.h 43 uint8_t fDeviceGamma; //2.6, (0.0, 4.0) gamma, 0.0 for sRGB
44 uint8_t fPaintGamma; //2.6, (0.0, 4.0) gamma, 0.0 for sRGB
74 * paint and device gamma to be effectively 1.0.
112 //most significant bits to consider when creating mask gamma tables. Two bits
260 // SkMaskGamma::PreBlend converts linear masks to gamma correcting masks.
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/png/
PNGImageDecoder.cpp 59 // Gamma constants.
361 // Deal with gamma and keep it under our control.
362 double gamma; local
363 if (!m_ignoreGammaAndColorProfile && png_get_gAMA(png, info, &gamma)) {
364 if ((gamma <= 0.0) || (gamma > cMaxGamma)) {
365 gamma = cInverseGamma;
366 png_set_gAMA(png, info, gamma);
368 png_set_gamma(png, cDefaultGamma, gamma);
  /external/chromium_org/chrome/browser/chromeos/login/
hwid_checker_unittest.cc 122 EXPECT_TRUE(IsHWIDCorrect("SAMS ALEX GAMMA DVT 9247"));
123 EXPECT_FALSE(IsHWIDCorrect("SAMS ALPX GAMMA DVT 9247"));
  /external/chromium_org/third_party/skia/src/effects/
SkTableMaskFilter.cpp 85 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) {
87 const float g = SkScalarToFloat(gamma);
  /external/opencv/cv/src/
cvsnakes.cpp 60 // gamma - pointer to coefficient of image energy,
61 // coeffUsage - if CV_VALUE - alpha, beta, gamma point to single value
78 float *gamma,
133 if( gamma == NULL )
351 _gamma = *gamma;
357 _gamma = gamma[i];
411 float *beta, float *gamma,
433 alpha, beta, gamma, coeffUsage, win, criteria,
  /external/skia/src/effects/
SkTableMaskFilter.cpp 85 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) {
87 const float g = SkScalarToFloat(gamma);
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DeviceMotionAndOrientationTest.java 252 protected void gotOrientation(double alpha, double beta, double gamma) {
255 value3 = gamma;
276 protected void gotRotationRate(double alpha, double beta, double gamma) {
279 value3 = gamma;
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationEvent.h 53 double gamma(bool& isNull) const;
DeviceRotationRate.h 44 double gamma(bool& isNull) const;
  /external/chromium_org/third_party/WebKit/public/platform/
WebDeviceOrientationData.h 47 double gamma; member in class:WebKit::WebDeviceOrientationData
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 114 Scalar rho = 1.0, rho_1, lambda, gamma; local
163 if (transition || iter.first()) gamma = 0.0;
164 else gamma = (std::max)(0.0, (rho - old_z.dot(z)) / rho_1);
165 p = z + gamma*p;
  /external/libpng/contrib/pngminus/
README 26 features of PNG, like gamma, alpha, sbit, text-chunks, etc. This makes
50 no gamma correction. But this makes it also a simple program that is
69 As said before, PngMinus doesn't correct for gamma. When reading
73 the addition of course of the possibility to create gamma-chunks when
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels_c.h 46 extern void SDL_ApplyGamma(Uint16 *gamma, SDL_Color *colors, SDL_Color *output, int ncolors);
  /libcore/dom/src/test/resources/
hc_staff.html 20 <acronym title="Yes" class="Yes">&beta; Dallas, &gamma;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DeviceMotionEventCustom.cpp 90 v8::Local<v8::Value> gammaValue = object->Get(v8::String::NewSymbol("gamma"));
94 double gamma = gammaValue->NumberValue(); local
99 return DeviceMotionData::RotationRate::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.h 150 float gamma_saved[3]; /* Saved gamma values for VidMode gamma */
151 int gamma_changed; /* flag: has VidMode gamma been modified? */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
bessel_function.tcc 64 * @brief Compute the gamma functions required by the Temme series
68 * [\frac{1}{\Gamma(1 - \mu)} - \frac{1}{\Gamma(1 + \mu)}]
73 * [\frac{1}{\Gamma(1 - \mu)} + \frac{1}{\Gamma(1 + \mu)}]
77 * The values of \f$ \Gamma(1 + \mu) \f$ and \f$ \Gamma(1 - \mu) \f$
82 * @param __mu The input parameter of the gamma functions.
85 * @param __gampl The output function \f$ \Gamma(1 + \mu) \f$
86 * @param __gammi The output function \f$ \Gamma(1 - \mu) \f
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
bessel_function.tcc 64 * @brief Compute the gamma functions required by the Temme series
68 * [\frac{1}{\Gamma(1 - \mu)} - \frac{1}{\Gamma(1 + \mu)}]
73 * [\frac{1}{\Gamma(1 - \mu)} + \frac{1}{\Gamma(1 + \mu)}]
77 * The values of \f$ \Gamma(1 + \mu) \f$ and \f$ \Gamma(1 - \mu) \f$
82 * @param __mu The input parameter of the gamma functions.
85 * @param __gampl The output function \f$ \Gamma(1 + \mu) \f$
86 * @param __gammi The output function \f$ \Gamma(1 - \mu) \f
    [all...]

Completed in 991 milliseconds

1 2 3 4 5 67 8 91011>>