HomeSort by relevance Sort by last modified time
    Searched refs:gamma (Results 201 - 225 of 263) sorted by null

1 2 3 4 5 6 7 891011

  /external/libpng/contrib/libtests/
tarith.c 771 double gamma[9] = { 2.2, 1.8, 1.52, 1.45, 1., 1/1.45, 1/1.52, 1/1.8, 1/2.2 }; local
775 /* Silence the output with -s, just test the gamma functions with -g: */
889 /* Test the overall gamma correction. */
893 double g = gamma[i];
897 printf("Test gamma %f\n", g);
916 printf("gamma %f: maximum 8-bit error %f\n", g, maxerr);
935 printf("gamma %f: maximum 16-bit error %f\n", g, maxerr);
947 * 3: accuracy test of fixed point gamma tables
987 else if (strcmp(argv[1], "gamma") == 0)
993 "usage: tarith [-v] [-c count] {ascii,muldiv,gamma} [args]\n")
    [all...]
  /external/libpng/
example.c 350 * quantizing, filling, setting background, and doing gamma
427 /* Some suggestions as to how to get a screen gamma value
429 * Note that screen gamma is the display_exponent, which includes
432 if (/* We have a user-defined screen gamma value */)
436 /* This is one way that applications share the same screen gamma value */
449 /* Tell libpng to handle the gamma conversion for you. The final call
452 * your application support gamma correction.
538 /* Optional call to gamma correct and add the background to the palette
    [all...]
pngget.c 687 *file_gamma = info_ptr->colorspace.gamma;
706 *file_gamma = png_float(png_ptr, info_ptr->colorspace.gamma,
    [all...]
  /external/pdfium/third_party/libpng16/
pngget.c 687 *file_gamma = info_ptr->colorspace.gamma;
706 *file_gamma = png_float(png_ptr, info_ptr->colorspace.gamma,
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
batch_normalization_test.cc 177 auto gamma = ConstantR1<float>(&builder, {1.0, 1.0}); local
216 /* auto output_activations = */ Add(Mul(normalized_input_activations, gamma,
    [all...]
  /external/ImageMagick/MagickCore/
compare.c 1103 gamma; local
    [all...]
threshold.c 675 gamma,
729 gamma=PerceptibleReciprocal(sum);
731 histogram[i]=gamma*histogram[i];
668 gamma, local
    [all...]
identify.c     [all...]
draw.c 1913 gamma, local
5934 gamma, local
    [all...]
  /external/ImageMagick/MagickWand/
mogrify.c 327 % * directly modified (EG: -negate, -gamma, -level, -annotate, -draw),
883 if (LocaleCompare("auto-gamma",option+1) == 0)
886 Auto Adjust Gamma of image based on its mean
1244 gamma; local
1957 gamma, local
    [all...]
magick-image.c 744 % image to try make set its gamma appropriatally.
    [all...]
  /external/tensorflow/tensorflow/python/ops/
gradients_test.py 841 gamma = resource_variable_ops.ResourceVariable(
843 dtype="float32", name="gamma")
848 output = inputs + gamma
858 loss, [gamma])
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
math_private.h 844 #define __ieee754_gamma gamma
  /device/google/contexthub/firmware/external/freebsd/lib/msun/src/
math_private.h 688 #define __ieee754_gamma gamma
  /external/ImageMagick/Magick++/tests/
attributes.cpp 774 // gamma
776 if ( image.gamma() == 1.0f)
780 << ", gamma correction is unity as expected" << endl;
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_cmd.h 1278 uint32 gamma; member in struct:SVGA3dCmdLogicOpsClearTypeBlend
    [all...]
  /external/python/cpython2/Lib/lib-tk/test/test_tkinter/
test_images.py 209 self.assertEqual(image['gamma'], '1.0')
210 image.configure(gamma=2.0)
211 self.assertEqual(image['gamma'], '2.0')
  /external/python/cpython3/Lib/tkinter/test/test_tkinter/
test_images.py 208 self.assertEqual(image['gamma'], '1.0')
209 image.configure(gamma=2.0)
210 self.assertEqual(image['gamma'], '2.0')
  /external/tensorflow/tensorflow/contrib/distribute/python/
keras_utils_test.py 485 out /= keras.backend.eval(norm.gamma)
  /external/ImageMagick/coders/
json.c     [all...]
psd.c 349 gamma;
354 gamma=QuantumScale*GetPixelAlpha(image, q);
355 if (gamma != 0.0 && gamma != 1.0)
361 q[i]=ClampToQuantum((q[i]-((1.0-gamma)*QuantumRange))/gamma);
344 gamma; local
    [all...]
miff.c 822 if (LocaleCompare(keyword,"gamma") == 0)
824 image->gamma=StringToDouble(options,(char **) NULL);
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 
  /frameworks/av/media/libaudioprocessing/
AudioMixer.cpp 1866 float gamma = t->getHapticScaleGamma(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 66 reflection formula for the gamma function. It conforms to IEEE
108 /* Implementation of the real gamma function. In extensive but non-exhaustive
125 Gamma(x) involves computing pow(x+g-0.5, x-0.5) / exp(x+g-0.5). For many x
189 /* gamma values for small positive integers, 1 though NGAMMA_INTEGRAL */
326 lgamma: natural log of the absolute value of the Gamma function.
848 FUNC1A(gamma, m_tgamma,
849 "gamma(x)\n\nGamma function at x.")
851 "lgamma(x)\n\nNatural logarithm of absolute value of Gamma function at x.")
    [all...]

Completed in 3285 milliseconds

1 2 3 4 5 6 7 891011