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

  /external/chromium_org/third_party/skia/bench/
PathUtilsBench.cpp 16 #define STRIDE 2
29 SkPathUtils::BitsToPath_Path(path, bits, H, W, STRIDE);
33 SkPathUtils::BitsToPath_Region(path, bits, H, W, STRIDE);
42 char* bits[H * STRIDE];
59 fillRandomBits(H * STRIDE, (char*) &bits);
  /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/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...]
  /external/chromium_org/third_party/skia/src/gpu/
GrPathUtils.h 72 * STRIDE is the size of each vertex.
76 template <int N, size_t STRIDE, size_t UV_OFFSET>
91 xyPtr += STRIDE;
92 uvPtr += STRIDE;
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
sse_normal.S 43 #define STRIDE REGOFF(12, ESI)
66 MOV_L ( STRIDE, EAX ) /* stride */
128 MOV_L ( STRIDE, EAX ) /* stride */
221 MOV_L ( STRIDE, EAX ) /* stride */
3dnow_normal.S 39 #define STRIDE REGOFF(12, ESI)
127 ADD_L ( STRIDE, EDX ) /* next normal */
158 ADD_L ( STRIDE, EDX ) /* next normal */
279 ADD_L ( STRIDE, EDX ) /* next normal */
323 ADD_L ( STRIDE, EDX ) /* next normal */
407 ADD_L ( STRIDE, EDX ) /* next normal */
501 ADD_L ( STRIDE, EDX ) /* next normal */
570 ADD_L ( STRIDE, EDX) /* next normal */
658 ADD_L ( STRIDE, EDX ) /* next normal */
722 ADD_L ( STRIDE, ECX ) /* next normal *
    [all...]
  /external/mesa3d/src/mesa/x86/
sse_normal.S 43 #define STRIDE REGOFF(12, ESI)
66 MOV_L ( STRIDE, EAX ) /* stride */
128 MOV_L ( STRIDE, EAX ) /* stride */
221 MOV_L ( STRIDE, EAX ) /* stride */
3dnow_normal.S 39 #define STRIDE REGOFF(12, ESI)
127 ADD_L ( STRIDE, EDX ) /* next normal */
158 ADD_L ( STRIDE, EDX ) /* next normal */
279 ADD_L ( STRIDE, EDX ) /* next normal */
323 ADD_L ( STRIDE, EDX ) /* next normal */
407 ADD_L ( STRIDE, EDX ) /* next normal */
501 ADD_L ( STRIDE, EDX ) /* next normal */
570 ADD_L ( STRIDE, EDX) /* next normal */
658 ADD_L ( STRIDE, EDX ) /* next normal */
722 ADD_L ( STRIDE, ECX ) /* next normal *
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
x86_64-mont5.pl 121 $STRIDE=2**5*8; # 5 is "window size"
122 $N=$STRIDE/4; # should match cache line size
136 movq `0*$STRIDE/4-96`($bp),%xmm0
137 movq `1*$STRIDE/4-96`($bp),%xmm1
139 movq `2*$STRIDE/4-96`($bp),%xmm2
141 movq `3*$STRIDE/4-96`($bp),%xmm3
146 lea $STRIDE($bp),$bp
157 movq `0*$STRIDE/4-96`($bp),%xmm0
158 movq `1*$STRIDE/4-96`($bp),%xmm1
160 movq `2*$STRIDE/4-96`($bp),%xmm
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_vertex_array.c 1087 #define COMMON_ARRAY_DATA_INIT(a, PTR, TYPE, STRIDE, COUNT, NORMALIZED, HDR_SIZE, OPCODE) \
1091 (a)->user_stride = STRIDE; \
1096 (a)->true_stride = (STRIDE == 0) \
1097 ? (a)->element_size : STRIDE; \
    [all...]
  /external/mesa3d/src/glx/
indirect_vertex_array.c 1087 #define COMMON_ARRAY_DATA_INIT(a, PTR, TYPE, STRIDE, COUNT, NORMALIZED, HDR_SIZE, OPCODE) \
1091 (a)->user_stride = STRIDE; \
1096 (a)->true_stride = (STRIDE == 0) \
1097 ? (a)->element_size : STRIDE; \
    [all...]
  /external/libhevc/test/decoder/
main.c 354 #define STRIDE 0
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/sha/asm/
sha512-x86_64.pl 175 my $STRIDE=$SZ;
176 $STRIDE += 16 if ($i%(16/$SZ)==(16/$SZ-1));
214 lea $STRIDE($Tbl),$Tbl # round++
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_translate.c 41 GLuint stride,
47 GLuint stride,
53 GLuint stride,
59 GLuint stride,
65 GLuint stride,
71 GLuint stride,
77 GLuint stride,
109 #define STRIDE stride
110 #define NEXT_F f += stride
    [all...]
  /external/mesa3d/src/mesa/math/
m_translate.c 41 GLuint stride,
47 GLuint stride,
53 GLuint stride,
59 GLuint stride,
65 GLuint stride,
71 GLuint stride,
77 GLuint stride,
109 #define STRIDE stride
110 #define NEXT_F f += stride
    [all...]

Completed in 525 milliseconds