HomeSort by relevance Sort by last modified time
    Searched refs:gamma (Results 51 - 75 of 195) sorted by null

1 23 4 5 6 7 8

  /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/gregbook/
writepng.h 91 double gamma; member in struct:_mainprog_info
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);
writepng.c 158 if (mainprog_ptr->gamma > 0.0)
159 png_set_gAMA(png_ptr, info_ptr, mainprog_ptr->gamma);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 266 ECFieldElement gamma = b.y.subtract(this.y).divide(b.x.subtract(this.x)); local
268 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x);
269 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
292 ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO)); local
294 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
295 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
ECCurve.java 577 ECFieldElement gamma = zeroElement; local
596 gamma = z.square().add(z);
598 while (gamma.toBigInteger().equals(ECConstants.ZERO));
  /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/opencv/ml/src/
mlsvm.cpp 132 else if( param_id == CvSVM::GAMMA )
164 "(use one of CvSVM::C, CvSVM::GAMMA et al.)", __FILE__, __LINE__ );
171 gamma(1), coef0(0), C(1), nu(0), p(0), class_weights(0)
182 degree(_degree), gamma(_gamma), coef0(_coef0),
261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 );
271 -2*params->gamma, -2*params->coef0 );
289 double gamma = -params->gamma; local
315 results[j] = (Qfloat)(s*gamma);
1613 double gamma = 0, C = 0, degree = 0, coef = 0, p = 0, nu = 0; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testgl.c 452 int logo, int logocursor, int slowly, int bpp, float gamma, int noframe, int fsaa, int sync, int accel )
588 /* Set the gamma for the window */
589 if ( gamma != 0.0 ) {
590 SDL_SetGamma(gamma, gamma, gamma);
790 float gamma = 0.0; local
820 if ( strcmp(argv[i], "-gamma") == 0 ) {
821 gamma = (float)atof(argv[++i]);
837 "Usage: %s [-twice] [-logo] [-logocursor] [-slow] [-bpp n] [-gamma n] [-noframe] [-fsaa] [-accel] [-sync] [-fullscreen]\n"
    [all...]
  /external/skia/legacy/src/effects/
SkTableMaskFilter.cpp 94 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) {
96 const float g = SkScalarToFloat(gamma);
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
add-listener-from-callback.js 17 shouldBe('deviceOrientationEvent.gamma', 'mockGamma');
  /external/clang/test/CodeGenCXX/
mangle-ms.cpp 123 void gamma(class foo, struct bar, union baz, enum quux) {} function
124 // CHECK: @"\01?gamma@@YAXVfoo@@Ubar@@Tbaz@@W4quux@@@Z"
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 86 /* The gAMA chunk describes the gamma characteristics of the system
90 png_fixed_point gamma; member in struct:png_info_def
  /external/quake/quake/src/QW/client/
gl_vidlinux_svga.c 142 float gamma, f, inf; local
148 gamma = Q_atof (Cmd_Argv(1));
152 f = pow ( (host_basepal[i]+1)/256.0 , gamma );
  /external/webkit/Source/WebCore/bindings/js/
JSDeviceMotionEventCustom.cpp 100 JSValue gammaValue = object->get(exec, Identifier(exec, "gamma"));
104 double gamma = gammaValue.toNumber(exec); local
111 return DeviceMotionData::RotationRate::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
128 object->putDirect(exec->globalData(), Identifier(exec, "gamma"), rotationRate->canProvideGamma() ? jsNumber(rotationRate->gamma()) : jsNull());
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DeviceMotionEventCustom.cpp 56 object->Set(v8::String::New("gamma"), rotationRate->canProvideGamma() ? v8::Number::New(rotationRate->gamma()) : v8::Null());
112 v8::Local<v8::Value> gammaValue = object->Get(v8::String::New("gamma"));
116 double gamma = gammaValue->NumberValue(); local
121 return DeviceMotionData::RotationRate::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
  /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/opencv/cvaux/include/
cvmat.hpp 723 /* A*alpha + B*beta + gamma */
727 const CvMAT* b, double beta, double gamma = 0 );
730 double alpha, beta, gamma;
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentadoptnode16.js 118 entRef = doc.createEntityReference("gamma");
152 assertEquals("firstChildEnt3Ref","gamma",firstChildName);
  /frameworks/base/libs/hwui/
GammaFontRenderer.h 185 enum Gamma {
192 FontRenderer* getRenderer(Gamma gamma);
Program.h 163 float gamma; member in struct:android::uirenderer::ProgramDescription
206 gamma = 2.2f;
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComponentTransfer.cpp 142 static void gamma(unsigned char* values, const ComponentTransferFunction& transferFunction) function in namespace:WebCore
170 TransferType callEffect[] = {identity, identity, table, discrete, linear, gamma};
210 ts << "GAMMA";
  /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...]
  /frameworks/base/services/java/com/android/server/power/
DisplayPowerController.java 85 // The maximum range of gamma adjustment possible using the screen
104 // the gamma. We want the change to happen gradually so that it is below the
328 // The last screen auto-brightness gamma. (For printing in dump() only.)
1045 float gamma = 1.0f; local
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
lpc_analysis.c 405 const double gamma = 0.9; local
454 tmp = gamma;
458 tmp *= gamma;

Completed in 503 milliseconds

1 23 4 5 6 7 8