HomeSort by relevance Sort by last modified time
    Searched defs:alpha (Results 226 - 250 of 374) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 41 alpha RN 6 label
287 ;// Check |p0-q0|<Alpha
291 USUB8 a, ap0q0, alpha
425 M_LDRD alpha, beta, pAlphaBeta1
443 M_LDRD alpha, beta, pAlphaBeta1
522 M_LDRD alpha, beta, pAlphaBeta1
538 M_LDRD alpha, beta, pAlphaBeta0
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 76 /* array of alpha values, from the standard */
128 u32 alpha; member in struct:__anon16681
210 u8 (*alpha)[2],
218 u8 (*alpha)[2],
678 if ( ((unsigned)ABS(p0-q0) < thresholds->alpha) &&
716 if ( ((unsigned)ABS(p0-q0) < thresholds->alpha) &&
721 ((unsigned)ABS(p0-q0) < ((thresholds->alpha >> 2) +2)) ?
786 if ( ((unsigned)ABS(p0-q0) < thresholds->alpha) &&
858 if ( ((unsigned)ABS(p0-q0) < thresholds->alpha) &&
897 if ( ((unsigned)ABS(p0-q0) < thresholds->alpha) &
1781 u8 alpha[2][2]; local
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java 423 int alpha; local
427 alpha = (int)(((drawingTime-mFadeStartTime)*255)/FADE_DURATION);
428 if (alpha > 255) {
429 alpha = 255;
431 Log.d(TAG, "drawChild alpha=" + alpha + " l=" + l + " t=" + t
433 if (alpha != 255 && mOld != null) {
434 mOldPaint.setAlpha(255-alpha);
438 alpha = 255;
440 int restoreTo = canvas.saveLayerAlpha(l, t, child.getWidth(), child.getHeight(), alpha,
    [all...]
  /frameworks/base/core/java/android/view/
WindowOrientationListener.java 408 final float alpha = timeDeltaMS / (FILTER_TIME_CONSTANT_MS + timeDeltaMS); local
409 x = alpha * (x - mLastFilteredX) + mLastFilteredX;
410 y = alpha * (y - mLastFilteredY) + mLastFilteredY;
411 z = alpha * (z - mLastFilteredZ) + mLastFilteredZ;
    [all...]
  /frameworks/base/libs/androidfw/
InputTransport.cpp 61 inline static float lerp(float a, float b, float alpha) {
62 return a + alpha * (b - a);
706 float alpha; local
719 alpha = float(sampleTime - current->eventTime) / delta;
740 alpha = float(current->eventTime - sampleTime) / delta;
762 lerp(currentCoords.getX(), otherCoords.getX(), alpha));
764 lerp(currentCoords.getY(), otherCoords.getY(), alpha));
767 "other (%0.3f, %0.3f), alpha %0.3f",
771 alpha);
    [all...]
VelocityTracker.cpp 773 float alpha = dt / (FILTER_TIME_CONSTANT + dt); local
775 state.xvel += (xvel - state.xvel) * alpha;
776 state.yvel += (yvel - state.yvel) * alpha;
785 state.xaccel += (xaccel - state.xaccel) * alpha;
786 state.yaccel += (yaccel - state.yaccel) * alpha;
788 state.xvel += (state.xaccel * dt) * alpha;
789 state.yvel += (state.yaccel * dt) * alpha;
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Delaunay.cpp 148 EdgePointer alpha, beta, temp; local
149 alpha = (EdgePointer) rot(onext(a));
151 temp = onext(alpha);
152 onext(alpha) = onext(beta);
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 219 final float alpha = Math.min((float) boundsHeight / (float) mExpandedPhotoSize, local
221 if (alpha < 1.0f) {
223 return (int) (alpha * mExpandedPhotoSize);
420 mPhotoView, "alpha", 0f).setDuration(PHOTO_CONTRACT_DURATION);
447 ObjectAnimator.ofFloat(mBackdrop, "alpha", 0, 0.5f).setDuration(
452 ObjectAnimator.ofFloat(mBackdrop, "alpha", 0f).setDuration(
  /packages/apps/Contacts/src/com/android/contacts/widget/
PinnedHeaderListView.java 84 int alpha; field in class:PinnedHeaderListView.PinnedHeader
313 header.alpha = MAX_ALPHA;
323 header.alpha = MAX_ALPHA * (headerHeight + portion) / headerHeight;
516 canvas.saveLayerAlpha(mBounds, header.alpha, Canvas.ALL_SAVE_FLAG);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragView.java 182 int alpha = crossFade ? (int) (255 * (1 - mCrossFadeProgress)) : 255; local
183 mPaint.setAlpha(alpha);
231 public void setAlpha(float alpha) {
232 super.setAlpha(alpha);
233 mPaint.setAlpha((int) (255 * alpha));
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.cpp 148 EdgePointer alpha, beta, temp; local
149 alpha = (EdgePointer) rot(onext(a));
151 temp = onext(alpha);
152 onext(alpha) = onext(beta);
  /packages/apps/Music/src/com/android/music/
TouchInterceptor.java 402 float alpha = 1.0f; local
405 alpha = ((float)(width - x)) / (width / 2);
407 mWindowParams.alpha = alpha;
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidatesContainer.java 53 * Alpha value to show an enabled arrow.
58 * Alpha value to show an disabled arrow.
447 Animation alpha = new AlphaAnimation(alphaFrom, alphaTo); local
449 animSet.addAnimation(alpha);
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 256 float alpha = Color.alpha(color) / 255.0f; local
257 return new Float4(red, green, blue, alpha);
  /sdk/assetstudio/src/com/android/assetstudiolib/
Util.java 138 * Inverts the alpha channel of the given {@link BufferedImage}. RGB data for the inverted area
142 * @return A new image with an alpha channel inverted from the original.
166 * Fills the given {@link BufferedImage} with a {@link Paint}, preserving its alpha channel.
214 int alpha, x, y; local
219 alpha = pixel[3];
220 if (alpha >= minAlpha) {
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 87 int bSize,red,green,blue,alpha,depth,stencil; local
120 IS_SUCCESS(glXGetFBConfigAttrib(dpy,*frmt,GLX_ALPHA_SIZE,&alpha));
159 return new EglConfig(red,green,blue,alpha,caveat,configId,depth,level,pMaxWidth,pMaxHeight,
  /external/aac/libAACenc/src/
metadata_compressor.cpp 777 FIXP_DBL gain, alpha, lvl2smthlvl; local
811 alpha = drcComp->fastAttack[i];
    [all...]
  /external/chromium/chrome/browser/themes/
browser_theme_pack.cc 681 double alpha; local
683 if (color_list->GetDouble(3, &alpha)) {
684 color = SkColorSetARGB(static_cast<int>(alpha * 255), r, g, b);
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
tab.cc 463 TabImage* alpha = &tab_alpha_; local
481 SkBitmapOperations::CreateMaskedBitmap(tab_l, *alpha->image_l);
492 SkBitmapOperations::CreateMaskedBitmap(tab_r, *alpha->image_r);
540 TabImage* alpha = &tab_alpha_; local
546 SkBitmapOperations::CreateMaskedBitmap(tab_l, *alpha->image_l);
553 SkBitmapOperations::CreateMaskedBitmap(tab_r, *alpha->image_r);
  /external/opencv/cv/src/
cvstereogc.cpp 661 static int64 icvAlphaExpand( int64 Eprev, int alpha, CvStereoGCState* state, CvStereoGCState2* state2 )
683 int aa[] = { alpha, -alpha };
732 if( d != alpha && d != OCCLUDED && (unsigned)x1 < (unsigned)cols )
739 delta = IS_BLOCKED(alpha, d) ? INFINITY : 0;
745 else if( IS_BLOCKED(alpha, d) )
749 // (left + x, right + x + alpha)
750 x1 = x + alpha;
756 E0a = IS_BLOCKED(d, alpha) ? INFINITY : 0;
757 Ea0 = IS_BLOCKED(-d1, alpha) ? INFINITY : 0
940 int alpha = disp[i]; local
    [all...]
  /external/qemu/android/skin/
trackball.c 158 typedef struct { int x, y, offset, alpha; Fix16VectorRec f; } SphereCoordRec, *SphereCoord; member in struct:__anon10511
328 coord->alpha = 256;
333 coord->alpha = 256*(radius - r0);
351 coord->alpha = coord->alpha * scale;
358 coord->alpha = 0;
360 coord->alpha = -256*(r0 - (radius2-1.));
400 color_blend( unsigned from, unsigned to, int alpha )
406 unsigned result_ag = (from_ag + (alpha*(to_ag - from_ag) >> 8)) & 0xff00ff;
407 unsigned result_rb = (from_rb + (alpha*(to_rb - from_rb) >> 8)) & 0xff00ff
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_video.h 38 /* Transparency definitions: These define alpha as the opacity of a surface */
81 /* Alpha value information (per-surface alpha) */
82 Uint8 alpha; member in struct:SDL_PixelFormat
135 #define SDL_SRCALPHA 0x00010000 /* Blit uses source alpha blending */
156 Uint32 blit_hw_A :1; /* Flag: Accelerated blits with Alpha */
159 Uint32 blit_sw_A :1; /* Flag: Accelerated blits with Alpha */
493 * SDL_SRCALPHA means that the surface will be used for alpha blits and
494 * if the hardware supports hardware acceleration of alpha blits between
572 * This function sets the alpha value for the entire surface, as opposed t
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 62 /* Functions to perform alpha blended blitting */
64 /* N->1 blending with per-surface alpha */
78 const unsigned A = srcfmt->alpha;
117 /* N->1 blending with pixel alpha */
131 /* FIXME: fix alpha bit field expansion here too? */
170 /* colorkeyed N->1 blending with per-surface alpha */
185 const int A = srcfmt->alpha;
227 /* fast RGB888->(A)RGB888 blending with surface alpha=128 special case */
243 movd_m2r(dalpha, mm7); /* dst alpha mask */
244 punpckldq_r2r(mm7, mm7); /* dst alpha mask | dst alpha mask -> mm7 *
282 unsigned alpha = info->src->alpha; local
505 unsigned alpha = info->src->alpha; local
939 unsigned alpha = info->src->alpha; local
1256 unsigned alpha = info->src->alpha; local
1352 unsigned alpha = info->src->alpha; local
1460 unsigned alpha = info->src->alpha; local
1875 unsigned alpha = info->src->alpha; \/* downscale alpha to 5 bits *\/ local
2014 unsigned alpha = info->src->alpha; \/* downscale alpha to 5 bits *\/ local
2160 unsigned alpha = info->src->alpha; local
2294 unsigned alpha = info->src->alpha; local
2430 unsigned alpha = info->src->alpha; local
2466 unsigned alpha = info->src->alpha; \/* downscale alpha to 5 bits *\/ local
    [all...]
  /external/speex/libspeex/
mdf.c 704 spx_float_t alpha, alpha_1; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.cpp 106 // Helper function for applying the state's alpha value to the given input
457 void PlatformContextSkia::setAlpha(float alpha)
459 m_state->m_alpha = alpha;
538 int alpha = roundf(m_state->m_alpha * 256); local
539 if (alpha > 255)
540 alpha = 255;
541 else if (alpha < 0)
542 alpha = 0;
543 return alpha;
651 // only look at the alpha when compositing. I'm not 100% sure this is what WebKit expects for image clipping
    [all...]

Completed in 2489 milliseconds

1 2 3 4 5 6 7 8 91011>>