/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
is_many.pass.cpp | 40 assert(!(m[0] & F::alpha)); 54 assert( (m[1] & F::alpha)); 68 assert(!(m[2] & F::alpha)); 82 assert(!(m[3] & F::alpha)); 96 assert( (m[4] & F::alpha)); 110 assert(!(m[5] & F::alpha));
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
is_1.pass.cpp | 47 assert(f.is(F::alpha, L'a')); 48 assert(!f.is(F::alpha, L'1')); 65 assert(f.is(F::alpha, L'\x00DA')); 90 assert(f.is(F::alpha, L'a')); 91 assert(!f.is(F::alpha, L'1')); 108 assert(!f.is(F::alpha, L'\x00DA'));
|
/external/libpng/contrib/tools/ |
cvtcolor.c | 125 double alpha = c[channels-1]; local 127 if (alpha > 0) 128 for (i=0; i<channels-1; ++i) c[i] /= alpha; 156 c[3] = c[1]; /* alpha, if present */ 165 double alpha = c[channels-1]; local 166 for (i=0; i<channels-1; ++i) c[i] *= alpha;
|
/external/skia/site/dev/contrib/ |
simd.md | 60 `SkPx`, our latest approach (there have been alpha `Sk16b` and beta `Sk4px` predecessors) to 8- and 16-bit SIMD tries to abstract over those idioms to again allow Skia developers to write one piece of clear graphics code that different backends can translate into their native intrinsics idiomatically. 66 3. `SkPx::Alpha` represents the alpha channels of those same pixels. 68 `SkPx`, `Wide` and `Alpha` create a somewhat complicated algebra of operations entirely motivated by the graphical operations we need to perform. Here are some examples: 80 SkPx.alpha() -> Alpha // Extract alpha channels. 81 Alpha::LoadN(const uint8_t*) -> Alpha // Like SkPx loads, in 8-bit steps. 82 Alpha::Load(n, const uint8_t*) -> Alph [all...] |
/external/skia/src/core/ |
SkBlitter_RGB16.cpp | 63 void blitV(int x, int y, int height, SkAlpha alpha) override; 90 void blitV(int x, int y, int height, SkAlpha alpha) override; 201 const uint8_t* SK_RESTRICT alpha = mask.getAddr8(clip.fLeft, clip.fTop); local 215 unsigned aa = *alpha++; 220 alpha += maskRB; 370 const uint8_t* SK_RESTRICT alpha = mask.getAddr8(clip.fLeft, clip.fTop); local 394 // alpha is 8x8, widen and split to get a pair of 16x4 395 valpha = vaddw_u8(vdupq_n_u16(1), vld1_u8(alpha)); 431 alpha += UNROLL; 439 SkAlpha255To256(*alpha++) >> 3) 618 const uint8_t* SK_RESTRICT alpha = mask.getAddr8(clip.fLeft, clip.fTop); local [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
audio_vector.cc | 146 // |alpha| is the mixing factor in Q14. 150 int alpha = 16384; local 152 alpha -= alpha_step; 153 array_[position + i] = (alpha * array_[position + i] + 154 (16384 - alpha) * append_this[i] + 8192) >> 14; 156 assert(alpha >= 0); // Verify that the slope was correct.
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
FisheyeFilter.java | 56 "uniform float alpha;\n" + 64 " float radian = m_pi_2 - atan(alpha * sqrt(radius2 - dist * dist), dist);\n" + 153 float alpha = mScale * 2.0f + 0.75f; local 159 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2)); 165 mProgram.setHostValue("alpha", alpha);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
TrustDrawable.java | 102 public void setAlpha(int alpha) { 103 mAlpha = alpha; 208 private Animator makeEnterAnimator(float radius, int alpha) { 210 alpha, ALPHA_VISIBLE_MAX, ENTER_DURATION, Interpolators.LINEAR_OUT_SLOW_IN, 214 private Animator makeExitAnimator(float radius, int alpha) { 216 alpha, 0, EXIT_DURATION, Interpolators.FAST_OUT_SLOW_IN,
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
RenderEngine.h | 73 void clearWithColor(float red, float green, float blue, float alpha); 75 float red, float green, float blue, float alpha); 99 virtual void setupLayerBlending(bool premultipliedAlpha, bool opaque, float alpha) = 0; 100 virtual void setupDimLayerBlending(float alpha) = 0; 106 virtual void setupLayerBlending(bool premultipliedAlpha, bool opaque, int alpha) = 0; 107 virtual void setupDimLayerBlending(int alpha) = 0;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaInformationRecords.java | 161 public String alpha; field in class:CdmaInformationRecords.CdmaDisplayInfoRec 163 public CdmaDisplayInfoRec(int id, String alpha) { 165 this.alpha = alpha; 172 ", alpha: " + alpha +
|
/frameworks/support/design/tests/src/android/support/design/widget/ |
AppBarLayoutBaseTest.java | 120 protected void assertScrimAlpha(@IntRange(from = 0, to = 255) int alpha) { 123 .check(matches(withScrimAlpha(alpha))); 126 static Matcher withScrimAlpha(final int alpha) { 131 "CollapsingToolbarLayout has content scrim with alpha: " + alpha); 136 return alpha == view.getScrimAlpha();
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
BackgroundManager.java | 174 throw new IllegalStateException("Can't draw with translucent alpha and color filter"); 185 public void setAlpha(int alpha) { 187 if (mState.mPaint.getAlpha() != alpha) { 188 mState.mPaint.setAlpha(alpha); 263 public void setAlpha(int alpha) { 264 if (mAlpha != alpha) { 265 mAlpha = alpha; 274 void setWrapperAlpha(int wrapperIndex, int alpha) { 276 mWrapper[wrapperIndex].mAlpha = alpha; 345 // Prevent invalidate when temporarily change child drawable's alpha in draw( 358 int alpha = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT local [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/ |
SwitchCompatUtils.java | 119 final int attr, final float alpha) { 121 return getColor(color, alpha); 124 private static int getColor(int color, float alpha) { 125 final int originalAlpha = Color.alpha(color); 126 // Return the color, multiplying the original alpha by the disabled value 127 return (color & 0x00ffffff) | (Math.round(originalAlpha * alpha) << 24);
|
/packages/apps/Settings/src/com/android/settings/ |
PreviewPagerAdapter.java | 157 final float alpha = (visibility == View.VISIBLE ? 1.0f : 0.0f); local 159 view.setAlpha(alpha); 167 .alpha(alpha) 180 .alpha(alpha)
|
/packages/services/Car/car-support-lib/src/android/support/car/ui/ |
CarRecyclerView.java | 120 float alpha = 1 - (1 - onScreen) * (1 - onScreen); local 121 fadeChild(child, alpha); 183 * Fades child by alpha. If child is a {@link android.view.ViewGroup} then it will recursively fade its 186 private void fadeChild(@NonNull View child, float alpha) { 190 fadeChild(vg.getChildAt(i), alpha); local 193 child.setAlpha(alpha);
|
/prebuilts/gradle-plugin/com/android/tools/build/gradle-core/2.5.0-alpha-preview-01/ |
gradle-core-2.5.0-alpha-preview-01.pom | 7 <version>2.5.0-alpha-preview-01</version> 32 <version>2.5.0-alpha-preview-01</version> 38 <version>25.5.0-alpha-preview-01</version> 50 <version>2.5.0-alpha-preview-01</version> 56 <version>2.5.0-alpha-preview-01</version> 176 <version>25.5.0-alpha-preview-01</version>
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
is_many.pass.cpp | 40 assert(!(m[0] & F::alpha)); 54 assert( (m[1] & F::alpha)); 68 assert(!(m[2] & F::alpha)); 82 assert(!(m[3] & F::alpha)); 96 assert( (m[4] & F::alpha)); 110 assert(!(m[5] & F::alpha));
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
is_many.pass.cpp | 40 assert(!(m[0] & F::alpha)); 54 assert( (m[1] & F::alpha)); 68 assert(!(m[2] & F::alpha)); 82 assert(!(m[3] & F::alpha)); 96 assert( (m[4] & F::alpha)); 110 assert(!(m[5] & F::alpha));
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
is_1.pass.cpp | 45 assert(f.is(F::alpha, L'a')); 46 assert(!f.is(F::alpha, L'1')); 63 assert(f.is(F::alpha, L'\x00DA')); 88 assert(f.is(F::alpha, L'a')); 89 assert(!f.is(F::alpha, L'1')); 106 assert(!f.is(F::alpha, L'\x00DA'));
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
is_many.pass.cpp | 40 assert(!(m[0] & F::alpha)); 54 assert( (m[1] & F::alpha)); 68 assert(!(m[2] & F::alpha)); 82 assert(!(m[3] & F::alpha)); 96 assert( (m[4] & F::alpha)); 110 assert(!(m[5] & F::alpha));
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
is_many.pass.cpp | 40 assert(!(m[0] & F::alpha)); 54 assert( (m[1] & F::alpha)); 68 assert(!(m[2] & F::alpha)); 82 assert(!(m[3] & F::alpha)); 96 assert( (m[4] & F::alpha)); 110 assert(!(m[5] & F::alpha));
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
is_1.pass.cpp | 47 assert(f.is(F::alpha, L'a')); 48 assert(!f.is(F::alpha, L'1')); 65 assert(f.is(F::alpha, L'\x00DA')); 90 assert(f.is(F::alpha, L'a')); 91 assert(!f.is(F::alpha, L'1')); 108 assert(!f.is(F::alpha, L'\x00DA'));
|
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixMatrix.h | 64 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking) 74 ::run(cols, rows, depth, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha, blocking); 78 // implements col-major += alpha * op(triangular) * op(general) 99 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking); 112 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking) 196 actualPanelWidth, actualPanelWidth, cols, alpha, 207 lengthTarget, actualPanelWidth, cols, alpha, 223 actual_kc, cols, alpha, -1, -1, 0, 0); 229 // implements col-major += alpha * op(general) * op(triangular) 249 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking) [all...] |
/prebuilts/go/darwin-x86/src/crypto/elliptic/ |
elliptic.go | 199 alpha := new(big.Int).Sub(x, delta) 200 if alpha.Sign() == -1 { 201 alpha.Add(alpha, curve.P) 204 alpha.Mul(alpha, alpha2) 205 alpha2.Set(alpha) 206 alpha.Lsh(alpha, 1) 207 alpha.Add(alpha, alpha2 [all...] |
/prebuilts/go/linux-x86/src/crypto/elliptic/ |
elliptic.go | 199 alpha := new(big.Int).Sub(x, delta) 200 if alpha.Sign() == -1 { 201 alpha.Add(alpha, curve.P) 204 alpha.Mul(alpha, alpha2) 205 alpha2.Set(alpha) 206 alpha.Lsh(alpha, 1) 207 alpha.Add(alpha, alpha2 [all...] |