HomeSort by relevance Sort by last modified time
    Searched refs:gamma (Results 251 - 275 of 320) sorted by null

<<111213

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
math.h 270 double gamma(double) __NDK_FPABI_MATH__;
296 * Reentrant version of gamma & lgamma; passes signgam back by reference
388 * Float versions of reentrant version of gamma & lgamma; passes
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
math.h 270 double gamma(double) __NDK_FPABI_MATH__;
296 * Reentrant version of gamma & lgamma; passes signgam back by reference
388 * Float versions of reentrant version of gamma & lgamma; passes
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
math.h 270 double gamma(double) __NDK_FPABI_MATH__;
296 * Reentrant version of gamma & lgamma; passes signgam back by reference
388 * Float versions of reentrant version of gamma & lgamma; passes
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
math.h 270 double gamma(double) __NDK_FPABI_MATH__;
296 * Reentrant version of gamma & lgamma; passes signgam back by reference
388 * Float versions of reentrant version of gamma & lgamma; passes
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
math.h 270 double gamma(double) __NDK_FPABI_MATH__;
296 * Reentrant version of gamma & lgamma; passes signgam back by reference
388 * Float versions of reentrant version of gamma & lgamma; passes
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
math.h 270 double gamma(double) __NDK_FPABI_MATH__;
296 * Reentrant version of gamma & lgamma; passes signgam back by reference
388 * Float versions of reentrant version of gamma & lgamma; passes
  /bionic/tests/
math_test.cpp 1108 TEST(math, gamma) {
1109 ASSERT_DOUBLE_EQ(log(24.0), gamma(5.0));
  /external/opencv/cvaux/src/
cvmat.cpp 422 cvAddWeighted( a, mat_add.alpha, b, mat_add.beta, mat_add.gamma, this );
  /external/qemu/distrib/libpng-1.2.46/
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;
pngwrite.c 64 png_write_gAMA(png_ptr, info_ptr->gamma);
    [all...]
  /frameworks/rs/api/
rs_core_math.spec 530 Return the log gamma
542 Return the log gamma and sign
863 Compute the gamma function of a value.
  /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/libpng/
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/base/android/jni_generator/
jni_generator_tests.py 149 double alpha, double beta, double gamma);
268 name='gamma'),
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 625 double gamma,
    [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 */
  /hardware/ti/omap4-aah/camera/inc/OMXCameraAdapter/
OMXCameraAdapter.h 589 //Gamma table
590 void updateGammaTable(const char* gamma);
    [all...]
  /external/opencv/cv/include/
cv.h     [all...]
  /external/opencv/ml/include/
ml.h 330 double gamma; // for poly/rbf/sigmoid member in struct:CvSVMParams
492 enum { C=0, GAMMA=1, P=2, NU=3, COEF=4, DEGREE=5 };
508 CvParamGrid gamma_grid = get_default_grid(CvSVM::GAMMA),
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmstypes.c 1161 cmsToneCurve* gamma = (cmsToneCurve*) Ptr; local
1271 cmsToneCurve* gamma = (cmsToneCurve*) Ptr; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windib/
SDL_dibvideo.c 364 /* See if gamma is supported on this screen */
1092 /* If we fail to get gamma, disable gamma control */
1109 /* About to leave active state, restore gamma */
1112 /* About to enter active state, set game gamma */
1114 SetDeviceGammaRamp(hdc, this->gamma);
1124 /* Restore the original gamma if necessary */
1133 /* Free the saved gamma memory */
1143 SDL_SetError("SDL compiled without gamma ramp support");
1174 SDL_SetError("SDL compiled without gamma ramp support")
    [all...]

Completed in 1008 milliseconds

<<111213