/external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86vm/ |
XF86VMode.c | 167 SDL_NAME(XF86VidModeSetGamma)(Display *dpy, int screen, SDL_NAME(XF86VidModeGamma) *Gamma) 179 req->red = (CARD32)(Gamma->red * 10000.); 180 req->green = (CARD32)(Gamma->green * 10000.); 181 req->blue = (CARD32)(Gamma->blue * 10000.); 188 SDL_NAME(XF86VidModeGetGamma)(Display *dpy, int screen, SDL_NAME(XF86VidModeGamma) *Gamma) 206 Gamma->red = ((float)rep.red) / 10000.; 207 Gamma->green = ((float)rep.green) / 10000.; 208 Gamma->blue = ((float)rep.blue) / 10000.; [all...] |
/external/skia/src/ports/ |
sk_predefined_gamma.h | 11 // Gamma table for 1.4 31 // Gamma table for 0.714286
|
/external/skia/src/core/ |
SkScan_Antihair.cpp | 118 const uint8_t* gamma = gGammaTable; 132 aa[0] = ApplyGamma(gamma, ma); 140 aa[0] = ApplyGamma(gamma, ma); 176 const uint8_t* gamma = gGammaTable; 189 aa[0] = ApplyGamma(gamma, SmallDot6Scale(255 - a, mod64)); 190 aa[1] = ApplyGamma(gamma, SmallDot6Scale(a, mod64));
|
/external/opencv/cvaux/src/ |
cvepilines.cpp | 454 double gamma; local 481 gamma = len2 / len1; 486 gamma, 601 double gamma, 621 if( gamma > 0 ) 625 coeffs->XcoefB = -xA - gamma * x1 + gamma * xA; 626 coeffs->XcoefAB = -xB + xA + gamma * xB - gamma * xA; 630 coeffs->YcoefB = -yA - gamma * y1 + gamma * yA [all...] |
cvhmm1d.cpp | [all...] |
/external/opencv/cxcore/src/ |
cxarithm.cpp | [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
SDL_dx5video.c | 435 /* WinDIB driver functions for manipulating gamma ramps */ 841 /*if gamma is undefined then we really have directx <= 0x500*/ 2288 LPDIRECTDRAWGAMMACONTROL gamma; local 2334 LPDIRECTDRAWGAMMACONTROL gamma; local [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngrtran.c | 87 png_warning(png_ptr, "Application must supply a known background gamma"); 522 * We will turn off gamma transformation later if no semitransparent entries 535 png_ptr->gamma = (float)file_gamma; 849 && (fabs(png_ptr->screen_gamma * png_ptr->gamma - 1.0) 864 png_ptr->gamma != 0.0) 899 g = 1.0 / (png_ptr->gamma); 900 gs = 1.0 / (png_ptr->gamma * png_ptr->screen_gamma); [all...] |
/external/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...] |
/external/chromium/net/spdy/ |
spdy_framer_test.cc | 234 headers["gamma"] = "charlie"; 247 EXPECT_EQ(headers["gamma"], new_headers["gamma"]); 262 frame.WriteString("gamma"); 263 frame.WriteString("gamma"); 288 frame1.WriteString("gamma"); 289 frame1.WriteString("gamma"); 303 frame2.WriteString("gamma"); 304 frame2.WriteString("gamma"); [all...] |
/external/speex/libspeex/ |
preprocess.c | 291 y = gamma(1.25)^2 * M(-.25;1;-x) / sqrt(x) 351 y = gamma(1.25)^2 * M(-.25;1;-x) / sqrt(x) 794 spx_word16_t gamma; local 803 /* Computing update gamma = .1 + .9*(old/(old+noise))^2 */ 804 gamma = QCONST16(.1f,15)+MULT16_16_Q15(QCONST16(.89f,15),SQR16_Q15(DIV32_16_Q15(st->old_ps[i],ADD32(st->old_ps[i],tot_noise)))); 806 /* A priori SNR update = gamma*max(0,post) + (1-gamma)*old/noise */ 807 st->prior[i] = EXTRACT16(PSHR32(ADD32(MULT16_16(gamma,MAX16(0,st->post[i])), MULT16_16(Q15_ONE-gamma,DIV32_16_Q8(st->old_ps[i],tot_noise))), 15)); [all...] |
/external/libpng/contrib/gregbook/ |
readpng2.c | 383 double gamma; local 485 * such images have a file gamma of 0.45455, which corresponds to a PC-like 491 * "gamma" value for the entire display system, i.e., the product of 494 if (png_get_gAMA(png_ptr, info_ptr, &gamma)) 495 png_set_gamma(png_ptr, mainprog_ptr->display_exponent, gamma);
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_pixels.c | 421 /* Apply gamma to a set of colors - this is easy. :) */ 422 void SDL_ApplyGamma(Uint16 *gamma, SDL_Color *colors, SDL_Color *output, 428 output[i].r = gamma[0*256 + colors[i].r] >> 8; 429 output[i].g = gamma[1*256 + colors[i].g] >> 8; 430 output[i].b = gamma[2*256 + colors[i].b] >> 8;
|
SDL_video.c | 208 video->gamma = NULL; 1033 /* gamma-corrected palette */ 1095 /* gamma-corrected palette */ 1179 * gamma modification, we apply it directly instead, 1191 if ( video->gamma ) { 1198 SDL_ApplyGamma(video->gamma, 1203 SDL_ApplyGamma(video->gamma, colors, [all...] |
/bionic/libm/include/ |
math.h | 271 double gamma(double); 297 * Reentrant version of gamma & lgamma; passes signgam back by reference 391 * Float versions of reentrant version of gamma & lgamma; passes
|
/development/ndk/platforms/android-3/include/ |
math.h | 270 double gamma(double); 296 * Reentrant version of gamma & lgamma; passes signgam back by reference 388 * Float versions of reentrant version of gamma & lgamma; passes
|
/development/ndk/platforms/android-9/include/ |
math.h | 270 double gamma(double); 296 * Reentrant version of gamma & lgamma; passes signgam back by reference 388 * Float versions of reentrant version of gamma & lgamma; passes
|
/external/skia/samplecode/ |
SampleWarp.cpp | 40 float gamma = 0.8; local 42 paint.setMaskFilter(SkTableMaskFilter::CreateGamma(gamma))->unref(); 46 gamma -= 0.1;
|
/frameworks/av/services/camera/libcameraservice/ |
FakeCamera.cpp | 194 * GAMMA = kYr*(1 << SHIFT2) 199 static const int GAMMA = kYr*(1 << SHIFT2); 259 u = cb_tab[(((B_ds-G_ds)<<SHIFT2) - GAMMA*tmp)>>(SHIFT2+2)];
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/ |
math.h | 270 double gamma(double); 296 * Reentrant version of gamma & lgamma; passes signgam back by reference 388 * Float versions of reentrant version of gamma & lgamma; passes
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/ |
modified_bessel_func.tcc | 256 * \frac{(x/2)^{\nu + 2k}}{k!\Gamma(\nu+k+1)} 418 // The number is Ai(0) = 3^{-2/3}/\Gamma(2/3). 424 // The number is Ai'(0) = -3^{-1/3}/\Gamma(1/3).
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/ |
modified_bessel_func.tcc | 256 * \frac{(x/2)^{\nu + 2k}}{k!\Gamma(\nu+k+1)} 418 // The number is Ai(0) = 3^{-2/3}/\Gamma(2/3). 424 // The number is Ai'(0) = -3^{-1/3}/\Gamma(1/3).
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/ |
modified_bessel_func.tcc | 256 * \frac{(x/2)^{\nu + 2k}}{k!\Gamma(\nu+k+1)} 418 // The number is Ai(0) = 3^{-2/3}/\Gamma(2/3). 424 // The number is Ai'(0) = -3^{-1/3}/\Gamma(1/3).
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/ |
math.h | 270 double gamma(double); 296 * Reentrant version of gamma & lgamma; passes signgam back by reference 388 * Float versions of reentrant version of gamma & lgamma; passes
|
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
math.h | 270 double gamma(double); 296 * Reentrant version of gamma & lgamma; passes signgam back by reference 388 * Float versions of reentrant version of gamma & lgamma; passes
|