HomeSort by relevance Sort by last modified time
    Searched defs:STRIDE (Results 1 - 4 of 4) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CreateBitmap.java 36 private static final int STRIDE = 64; // must be >= WIDTH
39 int[] colors = new int[STRIDE * HEIGHT];
46 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
77 mBitmaps[0] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
79 mBitmaps[1] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
81 mBitmaps[2] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
92 mBitmaps[i].setPixels(colors, 0, STRIDE, 0, 0, WIDTH, HEIGHT);
118 canvas.drawBitmap(mColors, 0, STRIDE, 0, 0, WIDTH, HEIGHT,
121 canvas.drawBitmap(mColors, 0, STRIDE, 0, 0, WIDTH, HEIGHT,
PurgeableBitmapView.java 47 private static final int STRIDE = 320; // must be >= WIDTH
59 Bitmap src = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
68 int[] colors = new int[STRIDE * HEIGHT];
75 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
MeasureText.java 34 private static final int STRIDE = 64; // must be >= WIDTH
37 int[] colors = new int[STRIDE * HEIGHT];
44 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
  /hardware/ti/omap4xxx/camera/
NV12_resize.c 8 #define STRIDE 4096
98 ALOGE("idx or idy less then 1 idx = %d idy = %d stride = %d", idx, idy, i_img_ptr->uStride);

Completed in 53 milliseconds