HomeSort by relevance Sort by last modified time
    Searched defs:gamma (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceRotationRate.cpp 55 double DeviceRotationRate::gamma(bool& isNull) const function in class:WebCore::DeviceRotationRate
58 return m_rotationRate->gamma();
DeviceOrientationEvent.cpp 78 double DeviceOrientationEvent::gamma(bool& isNull) const function in class:WebCore::DeviceOrientationEvent
81 return m_orientation->gamma();
DeviceOrientationData.cpp 37 PassRefPtr<DeviceOrientationData> DeviceOrientationData::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute)
39 return adoptRef(new DeviceOrientationData(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma, canProvideAbsolute, absolute));
44 return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbsolute, data.absolute);
59 DeviceOrientationData::DeviceOrientationData(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute)
66 , m_gamma(gamma)
81 double DeviceOrientationData::gamma() const function in class:WebCore::DeviceOrientationData
DeviceMotionData.h 67 static PassRefPtr<RotationRate> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
75 double gamma() const { return m_gamma; } function in class:WebCore::DeviceMotionData::RotationRate
78 RotationRate(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
  /external/chromium_org/third_party/WebKit/public/platform/
WebDeviceOrientationData.h 47 double gamma; member in class:WebKit::WebDeviceOrientationData
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DeviceOrientationEventCustom.cpp 42 // If alpha, beta, gamma or absolute are null or undefined, mark them as not provided.
49 double gamma = args[5]->NumberValue(); local
52 RefPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute);
V8DeviceMotionEventCustom.cpp 90 v8::Local<v8::Value> gammaValue = object->Get(v8::String::NewSymbol("gamma"));
94 double gamma = gammaValue->NumberValue(); local
99 return DeviceMotionData::RotationRate::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
GammaCorrectionFilter.java 17 private float gamma = 2.0f; field in class:GammaCorrectionFilter
25 public GammaCorrectionFilter(float gamma)
28 this.setGamma(gamma);
43 material.setFloat("gamma", gamma);
49 return gamma;
53 * set to 0.0 to disable gamma correction
54 * @param gamma
56 public void setGamma(float gamma)
60 material.setFloat("gamma", gamma)
    [all...]
PosterizationFilter.java 55 private float gamma = 0.6f; field in class:PosterizationFilter
75 * Creates a posterization Filter with the given number of colors and gamma
77 * @param gamma
79 public PosterizationFilter(int numColors, float gamma) {
81 this.gamma = gamma;
88 material.setFloat("Gamma", gamma);
108 * Sets gamma level used to enhange visual quality
110 public void setGamma(float gamma) {
    [all...]
  /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/
readpng.c 208 double gamma; local
240 * this file may have come from--so if it doesn't have a file gamma, don't
243 if (png_get_gAMA(png_ptr, info_ptr, &gamma))
244 png_set_gamma(png_ptr, display_exponent, gamma);
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.15/test/
testgamma.c 2 /* Bring up a window and manipulate the gamma on it */
18 /* Turn a normal gamma value into an appropriate gamma ramp */
19 void CalculateGamma(double gamma, Uint16 *ramp)
23 gamma = 1.0 / gamma;
25 value = (int)(pow((double)i/256.0, gamma)*65535.0 + 0.5);
77 float gamma; local
104 SDL_WM_SetCaption("SDL gamma test", "testgamma");
106 /* Set the desired gamma, if any *
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextGammaActivity.java 40 final GammaTextView gamma = new GammaTextView(this); local
41 layout.addView(gamma, new LinearLayout.LayoutParams(
49 Bitmap b = Bitmap.createBitmap(gamma.getWidth(), gamma.getHeight(),
53 gamma.draw(c);
91 final GammaTextView gamma = new GammaTextView(this); local
96 layout.addView(gamma, lp);
  /external/chromium_org/content/browser/device_orientation/
orientation.h 16 // alpha, beta, gamma and absolute are the rotations around the axes as
19 // can_provide_{alpha,beta,gamma,absolute} is true if data can be provided
41 void set_gamma(double gamma) {
43 gamma_ = gamma;
46 double gamma() const { return gamma_; } function in class:content::Orientation
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_rss.c 254 float gamma = 1.0f; local
257 gamma = 2.2f;
259 EMIT_RS_FLOAT(svga, gamma, OUTPUTGAMMA, fail);
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 254 float gamma = 1.0f; local
257 gamma = 2.2f;
259 EMIT_RS_FLOAT(svga, gamma, OUTPUTGAMMA, fail);
  /external/ceres-solver/internal/ceres/
polynomial.cc 58 // gamma <= 1 controls how much a change in the scaling has to
61 // gamma = 1 seems to lead to cycles (numerical issues?), so
63 const double gamma = 0.9; local
84 if (scaled_col_norm + scaled_row_norm < gamma * (col_norm + row_norm)) {
  /external/chromium_org/third_party/WebKit/public/web/
WebDeviceOrientation.h 72 void setGamma(double gamma)
75 m_gamma = gamma;
78 double gamma() const { return m_gamma; } function in class:WebKit::WebDeviceOrientation
  /frameworks/base/libs/hwui/
GammaFontRenderer.cpp 62 // Get the gamma
65 INIT_LOGD(" Setting text gamma to %s", property);
68 INIT_LOGD(" Using default text gamma of %.2f", DEFAULT_TEXT_GAMMA);
71 // Get the black gamma threshold
74 INIT_LOGD(" Setting text black gamma threshold to %s", property);
77 INIT_LOGD(" Using default text black gamma threshold of %d",
81 // Get the white gamma threshold
84 INIT_LOGD(" Setting text white gamma threshold to %s", property);
87 INIT_LOGD(" Using default white black gamma threshold of %d",
100 INIT_LOGD("Creating shader gamma font renderer")
146 const float gamma = 1.0f \/ mGamma; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 271 ECFieldElement gamma = b.y.subtract(this.y).divide(b.x.subtract(this.x)); local
273 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x);
274 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
297 ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO)); local
299 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
300 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEComponentTransfer.cpp 148 static void gamma(unsigned char* values, const ComponentTransferFunction& transferFunction) function in namespace:WebCore
223 TransferType callEffect[] = {identity, identity, table, discrete, linear, gamma};
250 ts << "GAMMA";
  /external/chromium_org/third_party/qcms/src/
transform_util.c 123 void compute_curve_gamma_table_type1(float gamma_table[256], double gamma)
127 gamma_table[i] = pow(i/255., gamma);
240 gamma table is within expected values. */
245 // Note: we check that the gamma is not in range
428 static void compute_precache_pow(uint8_t *output, float gamma)
433 output[v] = 255. * pow(v/(double)PRECACHE_OUTPUT_MAX, gamma);
522 static uint16_t *build_pow_table(float gamma, int length)
532 x = pow(x, gamma); //XXX turn this conversion into a function
563 float gamma = 1./u8Fixed8Number_to_float(trc->data[0]); local
564 *output_gamma_lut = build_pow_table(gamma, 4096)
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms.cpp 129 void gamma(class foo, struct bar, union baz, enum quux) {} function
130 // CHECK: @"\01?gamma@@YAXVfoo@@Ubar@@Tbaz@@W4quux@@@Z"
131 // X64: @"\01?gamma@@YAXVfoo@@Ubar@@Tbaz@@W4quux@@@Z"
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 365 RealScalar gamma = dj*alpha + swj2; local
374 if(gamma != 0)
375 mat.col(j).tail(rs) += (sigma*conj(wj)/gamma)*w.tail(rs);

Completed in 1158 milliseconds

1 2 3