HomeSort by relevance Sort by last modified time
    Searched refs:STRIDE (Results 1 - 6 of 6) 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;
  /external/skia/src/gpu/
GrPathUtils.h 74 * STRIDE is the size of each vertex.
78 template <int N, size_t STRIDE, size_t UV_OFFSET>
93 xyPtr += STRIDE;
94 uvPtr += STRIDE;
  /external/openssl/crypto/bn/asm/
x86_64-mont5.pl 95 $STRIDE=2**5*8; # 5 is "window size"
96 $N=$STRIDE/4; # should match cache line size
110 movq `0*$STRIDE/4-96`($bp),%xmm0
111 movq `1*$STRIDE/4-96`($bp),%xmm1
113 movq `2*$STRIDE/4-96`($bp),%xmm2
115 movq `3*$STRIDE/4-96`($bp),%xmm3
120 lea $STRIDE($bp),$bp
131 movq `0*$STRIDE/4-96`($bp),%xmm0
132 movq `1*$STRIDE/4-96`($bp),%xmm1
134 movq `2*$STRIDE/4-96`($bp),%xmm
    [all...]
  /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 135 milliseconds