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

1 2 3 4 5 6 78 910

  /bionic/tests/
math_test.cpp 991 TEST(math, gamma) {
992 ASSERT_FLOAT_EQ(log(24.0), gamma(5.0));
  /external/chromium_org/third_party/libpng/
pngset.c 128 png_warning(png_ptr, "Limiting gamma to 21474.83");
133 info_ptr->gamma = (float)png_gamma;
139 png_warning(png_ptr, "Setting gamma=0");
155 png_warning(png_ptr, "Limiting gamma to 21474.83");
162 png_warning(png_ptr, "Setting negative gamma to zero");
169 info_ptr->gamma = (float)(png_gamma/100000.);
176 png_warning(png_ptr, "Setting gamma=0");
    [all...]
pngrutil.c 724 /* Check for zero gamma */
728 "Ignoring gAMA chunk with gamma=0");
739 fprintf(stderr, "gamma = (%d/100000)", (int)igamma);
748 png_ptr->gamma = file_gamma;
1005 igamma=(png_fixed_point)(info_ptr->gamma * 100000.);
1014 fprintf(stderr, "incorrect gamma=(%d/100000)\n",
1018 fprintf(stderr, "incorrect gamma=%f\n", png_ptr->gamma);
    [all...]
pngget.c 482 *file_gamma = (double)info_ptr->gamma;
pngwrite.c 64 png_write_gAMA(png_ptr, info_ptr->gamma);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkScan_Antihair.cpp 170 aa[0] = ApplyGamma(gamma, ma);
178 aa[0] = ApplyGamma(gamma, ma);
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 329 gamma=None,
358 gamma
359 Specify a gamma value (create a ``gAMA`` chunk).
423 If specified, the `gamma` parameter must be a positive number
427 appropriately for the gamma specified.
589 self.gamma = gamma
682 if self.gamma is not None:
684 struct.pack("!L", int(round(self.gamma*1e5))))
    [all...]
  /external/libpng/
example.c 163 * dithering, filling, setting background, and doing gamma
233 /* Some suggestions as to how to get a screen gamma value
235 * Note that screen gamma is the display_exponent, which includes
238 if (/* We have a user-defined screen gamma value */)
242 /* This is one way that applications share the same screen gamma value */
255 /* Tell libpng to handle the gamma conversion for you. The final call
258 * your application support gamma correction.
337 /* Optional call to gamma correct and add the background to the palette
667 /* Optional gamma chunk is strongly suggested if you have any guess
668 * as to the correct gamma of the image
    [all...]
pngset.c 128 png_warning(png_ptr, "Limiting gamma to 21474.83");
133 info_ptr->gamma = (float)png_gamma;
139 png_warning(png_ptr, "Setting gamma=0");
155 png_warning(png_ptr, "Limiting gamma to 21474.83");
162 png_warning(png_ptr, "Setting negative gamma to zero");
169 info_ptr->gamma = (float)(png_gamma/100000.);
176 png_warning(png_ptr, "Setting gamma=0");
    [all...]
pngrutil.c 740 /* Check for zero gamma */
744 "Ignoring gAMA chunk with gamma=0");
755 fprintf(stderr, "gamma = (%d/100000)", (int)igamma);
764 png_ptr->gamma = file_gamma;
1021 igamma=(png_fixed_point)(info_ptr->gamma * 100000.);
1030 fprintf(stderr, "incorrect gamma=(%d/100000)\n",
1034 fprintf(stderr, "incorrect gamma=%f\n", png_ptr->gamma);
    [all...]
pngget.c 482 *file_gamma = (double)info_ptr->gamma;
CHANGES 110 fixed gamma and background correction for paletted images, so
195 fixed bug in gamma handling of 4-bit grayscale
196 added 2-bit grayscale gamma handling (Glenn R-P)
300 Fixed three bugs in pngrtran.c to make gamma+background handling consistent
369 error that was introduced in libpng-0.90 that can cause gamma processing
442 Correct gamma with srgb is 45455 instead of 45000 in pngrutil.c, to be
    [all...]
pngwrite.c 64 png_write_gAMA(png_ptr, info_ptr->gamma);
    [all...]
  /external/skia/src/core/
SkScan_Antihair.cpp 170 aa[0] = ApplyGamma(gamma, ma);
178 aa[0] = ApplyGamma(gamma, ma);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp     [all...]
  /external/opencv/cvaux/src/
cvmat.cpp 422 cvAddWeighted( a, mat_add.alpha, b, mat_add.beta, mat_add.gamma, this );
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCamera.cpp 188 gamma = false;
4631 int gamma = (toggle == true) ? GAMMA_ON : GAMMA_OFF; local
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_win_dw.cpp     [all...]
  /external/skia/src/ports/
SkFontHost_win_dw.cpp     [all...]
  /external/kernel-headers/original/linux/
fb.h 485 __u16 gamma; /* Gamma - in fractions of 100 */ member in struct:fb_monspecs
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 625 double gamma,
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngget.c 449 *file_gamma = (double)info_ptr->gamma;
png.h 726 /* The gAMA chunk describes the gamma characteristics of the system
730 float gamma; \/* gamma value of image, if (valid & PNG_INFO_gAMA) *\/ member in struct:png_info_struct
1225 float gamma; \/* file gamma value *\/ member in struct:png_struct_def
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/dga/
SDL_dgavideo.c 294 /* Prefer DirectColor visuals, for gamma support */
536 DGA_SetGammaRamp(this, this->gamma);
1026 /* See if actually setting the gamma is supported */
1028 SDL_SetError("Gamma correction not supported on this visual");
1032 /* Calculate the appropriate palette for the given gamma ramp */
  /external/opencv/cv/include/
cv.h     [all...]

Completed in 1398 milliseconds

1 2 3 4 5 6 78 910