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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
instantiate-case.cpp 4 static int alpha(T c) function
15 alpha(1); // expected-note{{instantiation of function template}}
  /external/chromium_org/third_party/webrtc/base/
exp_filter_unittest.cc 38 double alpha = pow(0.9f, 10.0f); local
39 value = alpha * value + (1.0f - alpha) * 20.0f;
exp_filter.cc 19 void ExpFilter::Reset(float alpha) {
20 alpha_ = alpha;
31 float alpha = pow(alpha_, exp); local
32 filtered_ = alpha * filtered_ + (1 - alpha) * sample;
40 void ExpFilter::UpdateBase(float alpha) {
41 alpha_ = alpha;
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceRotationRate.cpp 41 double DeviceRotationRate::alpha(bool& isNull) const function in class:blink::DeviceRotationRate
44 return m_rotationRate->alpha();
DeviceOrientationData.cpp 37 DeviceOrientationData* DeviceOrientationData::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute)
39 return 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)
64 , m_alpha(alpha)
71 double DeviceOrientationData::alpha() const function in class:blink::DeviceOrientationData
  /frameworks/base/packages/DocumentsUI/
wrap_alpha.py 6 # assume everything needs alpha suffixes
27 alpha = src.endswith("_alpha") variable
28 if alpha:
  /external/ceres-solver/internal/ceres/
corrector.cc 62 // correction. Normaly, alpha is upper bounded by one, but with this
63 // change, alpha is bounded above by zero.
97 // 0.5 * alpha^2 - alpha - rho'' / rho' * z'z = 0.
105 const double alpha = 1.0 - sqrt(D); local
108 residual_scaling_ = sqrt_rho1_ / (1 - alpha);
109 alpha_sq_norm_ = alpha / sq_norm;
133 // J = sqrt(rho) * (J - alpha^2 r * r' J)
  /external/chromium_org/ash/shelf/
background_animator.cc 52 int alpha = animation->CurrentValueBetween(min_alpha_, max_alpha_); local
53 if (alpha_ == alpha)
55 alpha_ = alpha;
  /external/chromium_org/third_party/WebKit/Source/core/css/
RGBColor.cpp 62 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> RGBColor::alpha() function in class:blink::RGBColor
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
Canvas2DContextAttributes.cpp 48 bool Canvas2DContextAttributes::alpha() const function in class:blink::Canvas2DContextAttributes
53 void Canvas2DContextAttributes::setAlpha(bool alpha)
55 m_alpha = alpha;
  /external/chromium_org/third_party/WebKit/public/platform/
WebDeviceOrientationData.h 49 double alpha; member in class:blink::WebDeviceOrientationData
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_alpha.c 27 * \brief Functions to apply alpha test.
39 #define ALPHA_TEST(ALPHA, LOOP_CODE) \
44 mask[i] &= (ALPHA < ref); \
50 mask[i] &= (ALPHA <= ref); \
56 mask[i] &= (ALPHA >= ref); \
62 mask[i] &= (ALPHA > ref); \
68 mask[i] &= (ALPHA != ref); \
74 mask[i] &= (ALPHA == ref); \
79 _mesa_problem(ctx, "Invalid alpha test in _swrast_alpha_test" ); \
87 * Perform the alpha test for an array of pixels
136 GLfixed alpha = span->alpha; local
139 ALPHA_TEST(FixedToInt(alpha), alpha += alphaStep); local
143 GLfixed alpha = span->alpha; local
146 ALPHA_TEST(FixedToInt(alpha), alpha += alphaStep); local
150 GLfloat alpha = FixedToFloat(span->alpha); local
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive3_test.cc 69 "[[:alnum:]] [[:alpha:]] [[:blank:]] [[:cntrl:]] [[:digit:]] "
82 "[[:alnum:]] [[:alpha:]] [[:blank:]] [[:cntrl:]] [[:digit:]] "
86 vector<string> alpha = InterestingUTF8(); local
87 for (int i = 0; i < alpha.size(); i++)
88 alpha[i] = "a" + alpha[i] + "b";
90 1, alpha, "a%sb", "");
  /external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
Vertex.h 47 * Simple structure to describe a vertex with a position and an alpha value.
50 float alpha; member in struct:android::uirenderer::AlphaVertex
52 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) {
54 vertex[0].alpha = alpha;
57 static inline void setColor(AlphaVertex* vertex, float alpha) {
58 vertex[0].alpha = alpha;
63 * Simple structure to describe a vertex with a position and an alpha value.
  /external/chromium_org/third_party/skia/src/core/
SkAlphaRuns.cpp 32 const uint8_t* alpha = fAlpha; local
35 SkASSERT(*alpha <= max);
36 alpha += *runs;
43 const uint8_t* alpha = fAlpha; local
49 SkDebugf(" %02x", *alpha);
53 alpha += n;
  /external/chromium_org/v8/test/mjsunit/
string-index.js 135 N[-2] = "Alpha";
136 assertEquals("Alpha", N[-2]);
165 var alpha = ['@']; variable
168 alpha[i] = c[0];
170 var alphaStr = alpha.join("");
174 assertEquals(alpha[i], alphaStr[i]);
  /external/llvm/test/MC/ARM/
thumb_set.s 52 .type alpha,%function
53 alpha: label
60 .thumb_set beta, alpha
99 @ CHECK: Name: alpha
  /external/mesa3d/src/mesa/swrast/
s_alpha.c 27 * \brief Functions to apply alpha test.
39 #define ALPHA_TEST(ALPHA, LOOP_CODE) \
44 mask[i] &= (ALPHA < ref); \
50 mask[i] &= (ALPHA <= ref); \
56 mask[i] &= (ALPHA >= ref); \
62 mask[i] &= (ALPHA > ref); \
68 mask[i] &= (ALPHA != ref); \
74 mask[i] &= (ALPHA == ref); \
79 _mesa_problem(ctx, "Invalid alpha test in _swrast_alpha_test" ); \
87 * Perform the alpha test for an array of pixels
136 GLfixed alpha = span->alpha; local
139 ALPHA_TEST(FixedToInt(alpha), alpha += alphaStep); local
143 GLfixed alpha = span->alpha; local
146 ALPHA_TEST(FixedToInt(alpha), alpha += alphaStep); local
150 GLfloat alpha = FixedToFloat(span->alpha); local
    [all...]
  /external/pixman/test/
alpha-loop.c 11 uint8_t *alpha; local
16 alpha = make_random_bytes (WIDTH * HEIGHT);
20 pixman_image_t *a = pixman_image_create_bits (PIXMAN_a8, WIDTH, HEIGHT, (uint32_t *)alpha, WIDTH);
  /external/regex-re2/re2/testing/
exhaustive3_test.cc 69 "[[:alnum:]] [[:alpha:]] [[:blank:]] [[:cntrl:]] [[:digit:]] "
82 "[[:alnum:]] [[:alpha:]] [[:blank:]] [[:cntrl:]] [[:digit:]] "
86 vector<string> alpha = InterestingUTF8(); local
87 for (int i = 0; i < alpha.size(); i++)
88 alpha[i] = "a" + alpha[i] + "b";
90 1, alpha, "a%sb", "");
  /external/skia/experimental/AndroidPathRenderer/
Vertex.h 47 * Simple structure to describe a vertex with a position and an alpha value.
50 float alpha; member in struct:android::uirenderer::AlphaVertex
52 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) {
54 vertex[0].alpha = alpha;
57 static inline void setColor(AlphaVertex* vertex, float alpha) {
58 vertex[0].alpha = alpha;
63 * Simple structure to describe a vertex with a position and an alpha value.
  /external/skia/src/core/
SkAlphaRuns.cpp 32 const uint8_t* alpha = fAlpha; local
35 SkASSERT(*alpha <= max);
36 alpha += *runs;
43 const uint8_t* alpha = fAlpha; local
49 SkDebugf(" %02x", *alpha);
53 alpha += n;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 24 public final int alpha; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
30 this.alpha = alpha;
37 this.alpha = 0x10000;
47 alpha == color.alpha);
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8DeviceOrientationEventCustom.cpp 41 // If alpha, beta, gamma or absolute are null or undefined, mark them as not provided.
44 double alpha = info[3]->NumberValue(); local
51 DeviceOrientationData* orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEComponentTransferElement.cpp 80 ComponentTransferFunction alpha; local
90 alpha = toSVGFEFuncAElement(*element).transferFunction();
93 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha);

Completed in 901 milliseconds

1 2 3 4 5 6 7 8 91011>>