HomeSort by relevance Sort by last modified time
    Searched refs:dstWidth (Results 1 - 14 of 14) sorted by null

  /hardware/ti/omap4xxx/libI420colorconvert/
ColorConvert.cpp 33 int dstWidth = srcRect.right - srcRect.left + 1;
35 size_t dst_y_size = dstWidth * dstHeight;
36 size_t dst_uv_stride = dstWidth / 2;
37 size_t dst_uv_size = dstWidth / 2 * dstHeight / 2;
43 memcpy(pDst_y, pSrc_y, dstWidth);
45 pDst_y += dstWidth;
48 size_t tmp = (dstWidth + 1) / 2;
67 int dstWidth, int dstHeight, ARect dstRect,
74 pDst_y += dstWidth;
78 uint8_t* pDst_uv = (uint8_t*)dstBits + dstWidth * dstHeight
    [all...]
  /external/skia/src/effects/
SkTableMaskFilter.cpp 52 int dstWidth = dst->fBounds.width();
53 int extraZeros = dst->fRowBytes - dstWidth;
56 for (int x = dstWidth - 1; x >= 0; --x) {
64 dstP += dstWidth;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
RendererUtils.java 124 private static float[] getFitVertices(int srcWidth, int srcHeight, int dstWidth,
127 float dstAspectRatio = ((float) dstWidth) / dstHeight;
148 int dstWidth, int dstHeight) {
150 getFitVertices(srcWidth, srcHeight, dstWidth, dstHeight));
154 int dstWidth, int dstHeight, float degrees) {
175 float scale = Math.min(dstWidth / maxWidth, dstHeight / maxHeight);
178 vertices[i] *= scale / dstWidth;
185 int dstWidth, int dstHeight, float horizontalDegrees, float verticalDegrees) {
187 float[] base = getFitVertices(srcWidth, srcHeight, dstWidth, dstHeight);
  /frameworks/base/include/media/stagefright/
ColorConverter.h 42 size_t dstWidth, size_t dstHeight,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 298 int dstWidth = image.getWidth();
304 int xStop = dstWidth - right;
316 int lastPixelOffset = right * dstWidth;
320 for (int y = 0, bufferOffset = 0; y < dstHeight; y++, bufferOffset = y * dstWidth) {
349 for (int x = 0, bufferOffset = 0; x < dstWidth; x++, bufferOffset = x) {
352 for (int y = 0; y < shadowSize; y++, bufferOffset += dstWidth) {
360 for (int y = yStart; y < yStop; y++, bufferOffset += dstWidth) {
  /external/skia/samplecode/
SampleStrokePath.cpp 71 static void scale_to_width(SkPath* path, SkScalar dstWidth) {
73 SkScalar scale = dstWidth / bounds.width();
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 357 final int dstWidth = (int) (sBallDiameter * mMetersToPixelsX + 0.5f);
359 mBitmap = Bitmap.createScaledBitmap(ball, dstWidth, dstHeight, true);
  /frameworks/base/media/libstagefright/colorconversion/
ColorConverter.cpp 85 size_t dstWidth, size_t dstHeight,
99 dstWidth, dstHeight,
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 414 * @param dstWidth The new bitmap's desired width.
419 public static Bitmap createScaledBitmap(Bitmap src, int dstWidth,
434 final float sx = dstWidth / (float)width;
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 312 milliseconds