Searched refs:stride (Results 276 - 300 of 1490) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/mesa/math/
H A Dm_vector.h42 #define VEC_BAD_STRIDE 0x100 /* matches tnl's prefered stride */
66 GLuint stride; /**< stride from one element to the next (in bytes) */ member in struct:__anon27978
89 ( (type *) ( ((GLbyte *) ((v)->data)) + (i) * (v)->stride) )
H A Dm_debug_clip.c73 const GLuint stride = clip_vec->stride; local
81 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
131 const GLuint stride = clip_vec->stride; local
138 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
166 const GLuint stride = clip_vec->stride; local
176 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
258 source->stride
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_fog.c101 GLuint stride = in->stride; local
115 for ( i = 0 ; i < n ; i++, STRIDE_F(v, stride)) {
123 for ( i = 0 ; i < n ; i++, STRIDE_F(v,stride)) {
130 for ( i = 0 ; i < n ; i++, STRIDE_F(v, stride)) {
190 STRIDE_F(coord, input->stride);
200 input->stride = 4 * sizeof(GLfloat);
205 STRIDE_F(coord, VB->EyePtr->stride);
H A Dt_vb_lighttmp.h57 const GLuint vstride = input->stride;
59 const GLuint nstride = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->stride;
86 store->LitColor[0].stride = 16;
87 store->LitColor[1].stride = 16;
240 const GLuint vstride = input->stride;
242 const GLuint nstride = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->stride;
264 store->LitColor[0].stride = 16;
265 store->LitColor[1].stride = 16;
417 const GLuint nstride = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->stride;
444 store->LitColor[0].stride
[all...]
/external/mesa3d/src/mesa/x86/
H A Dsse.c75 GLuint stride );
81 GLuint stride,
/external/pixman/test/
H A Dglyph-test.c121 int stride; local
142 stride = (width * bpp + 7) / 8 + prng_rand_n (17);
143 stride = (stride + 3) & ~3;
147 if (!(data = (uint32_t *)make_random_bytes (stride * height)))
156 data = malloc (stride * height);
157 prng_randmemset (data, height * stride, 0);
161 image = pixman_image_create_bits (format, width, height, data, stride);
/external/skia/experimental/pixman/
H A Djunk.cpp27 int stride)
39 uint32_t *src_row = &bits[i * (stride / 4)];
24 pixbuf_from_argb32(uint32_t *bits, int width, int height, int stride) argument
/external/webp/include/webp/
H A Dencode.h50 int width, int height, int stride,
53 int width, int height, int stride,
56 int width, int height, int stride,
59 int width, int height, int stride,
66 int width, int height, int stride,
69 int width, int height, int stride,
72 int width, int height, int stride,
75 int width, int height, int stride,
298 int a_stride; // stride of the alpha plane
303 int argb_stride; // This is stride i
[all...]
/external/webp/src/enc/
H A Dpicture_tools.c26 static int is_transparent_area(const uint8_t* ptr, int stride, int size) { argument
34 ptr += stride;
39 static int is_transparent_argb_area(const uint32_t* ptr, int stride, int size) { argument
47 ptr += stride;
52 static void flatten(uint8_t* ptr, int v, int stride, int size) { argument
56 ptr += stride;
60 static void flatten_argb(uint32_t* ptr, uint32_t v, int stride, int size) { argument
64 ptr += stride;
/external/chromium_org/third_party/opus/src/celt/
H A Dvq.c41 static void exp_rotation1(celt_norm *X, int len, int stride, opus_val16 c, opus_val16 s) argument
46 for (i=0;i<len-stride;i++)
50 x2 = Xptr[stride];
51 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15));
54 Xptr = &X[len-2*stride-1];
55 for (i=len-2*stride-1;i>=0;i--)
59 x2 = Xptr[stride];
60 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15));
65 static void exp_rotation(celt_norm *X, int len, int dir, int stride, int K, int spread) argument
84 if (len>=8*stride)
[all...]
/external/libopus/celt/
H A Dvq.c41 static void exp_rotation1(celt_norm *X, int len, int stride, opus_val16 c, opus_val16 s) argument
46 for (i=0;i<len-stride;i++)
50 x2 = Xptr[stride];
51 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15));
54 Xptr = &X[len-2*stride-1];
55 for (i=len-2*stride-1;i>=0;i--)
59 x2 = Xptr[stride];
60 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15));
65 static void exp_rotation(celt_norm *X, int len, int dir, int stride, int K, int spread) argument
84 if (len>=8*stride)
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLVertexArrayObjectOES.cpp121 GLuint index, GLsizei bytesPerElement, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset, PassRefPtrWillBeRawPtr<WebGLBuffer> buffer)
123 GLsizei validatedStride = stride ? stride : bytesPerElement;
137 state.stride = validatedStride;
138 state.originalStride = stride;
120 setVertexAttribState( GLuint index, GLsizei bytesPerElement, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset, PassRefPtrWillBeRawPtr<WebGLBuffer> buffer) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_texture_desc.c115 * Return the stride, in bytes, of the texture image of the given texture
122 unsigned tile_width, width, stride; local
147 stride = util_format_get_stride(tex->b.b.format, width);
149 return stride;
208 /* Get a width in pixels from a stride in bytes. */
221 unsigned stride, size, layer_size, nblocksy, i; local
239 stride = r300_texture_get_stride(screen, tex, i);
249 layer_size = stride * nblocksy;
263 tex->tex.stride_in_bytes[i] = stride;
269 u_minify(tex->tex.depth0, i), stride, te
311 r300_pixels_to_dwords(unsigned stride, unsigned height, unsigned xblock, unsigned yblock) argument
368 unsigned zcomp_numdw, zcompsize, hiz_numdw, stride, height; local
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_texture_desc.c115 * Return the stride, in bytes, of the texture image of the given texture
122 unsigned tile_width, width, stride; local
147 stride = util_format_get_stride(tex->b.b.format, width);
149 return stride;
208 /* Get a width in pixels from a stride in bytes. */
221 unsigned stride, size, layer_size, nblocksy, i; local
239 stride = r300_texture_get_stride(screen, tex, i);
249 layer_size = stride * nblocksy;
263 tex->tex.stride_in_bytes[i] = stride;
269 u_minify(tex->tex.depth0, i), stride, te
311 r300_pixels_to_dwords(unsigned stride, unsigned height, unsigned xblock, unsigned yblock) argument
368 unsigned zcomp_numdw, zcompsize, hiz_numdw, stride, height; local
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Drender2.c42 __indirect_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
54 else if (stride < k || order <= 0) {
74 __glFillMap1d(k, order, stride, pnts, (pc + 28));
89 if (stride != k) {
97 __glFillMap1d(k, order, stride, pnts, buf);
109 __indirect_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
121 else if (stride < k || order <= 0) {
141 __glFillMap1f(k, order, stride, pnts, (GLubyte *) (pc + 20));
152 if (stride != k) {
160 __glFillMap1f(k, order, stride, pnt
[all...]
/external/mesa3d/src/glx/
H A Drender2.c42 __indirect_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
54 else if (stride < k || order <= 0) {
74 __glFillMap1d(k, order, stride, pnts, (pc + 28));
89 if (stride != k) {
97 __glFillMap1d(k, order, stride, pnts, buf);
109 __indirect_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
121 else if (stride < k || order <= 0) {
141 __glFillMap1f(k, order, stride, pnts, (GLubyte *) (pc + 20));
152 if (stride != k) {
160 __glFillMap1f(k, order, stride, pnt
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_tile.c66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y);
95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0);
630 = (const uint *)(map + y * pt->stride + x*4);
634 ptrc += pt->stride/4;
642 = (const uint *)(map + y * pt->stride + x*4);
649 ptrc += pt->stride/4;
657 = (const uint *)(map + y * pt->stride + x*4);
664 ptrc += pt->stride/4;
671 = (const ushort *)(map + y * pt->stride + x*2);
678 ptrc += pt->stride/
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_tile.c66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y);
95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0);
630 = (const uint *)(map + y * pt->stride + x*4);
634 ptrc += pt->stride/4;
642 = (const uint *)(map + y * pt->stride + x*4);
649 ptrc += pt->stride/4;
657 = (const uint *)(map + y * pt->stride + x*4);
664 ptrc += pt->stride/4;
671 = (const ushort *)(map + y * pt->stride + x*2);
678 ptrc += pt->stride/
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_debug_clip.c73 const GLuint stride = clip_vec->stride; local
81 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
131 const GLuint stride = clip_vec->stride; local
138 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
166 const GLuint stride = clip_vec->stride; local
176 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
258 source->stride
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c46 void vp9_fdct4x4_c(const int16_t *input, int16_t *output, int stride) { argument
67 input[0] = in[0 * stride] * 16;
68 input[1] = in[1 * stride] * 16;
69 input[2] = in[2 * stride] * 16;
70 input[3] = in[3 * stride] * 16;
159 int stride, int tx_type) {
161 vp9_fdct4x4_c(input, output, stride);
172 temp_in[j] = input[j * stride + i] * 16;
243 void vp9_fdct8x8_c(const int16_t *input, int16_t *final_output, int stride) { argument
257 s0 = (input[0 * stride]
158 vp9_fht4x4_c(const int16_t *input, int16_t *output, int stride, int tx_type) argument
314 vp9_fdct16x16_c(const int16_t *input, int16_t *output, int stride) argument
570 vp9_fht8x8_c(const int16_t *input, int16_t *output, int stride, int tx_type) argument
603 vp9_fwht4x4_c(const int16_t *input, int16_t *output, int stride) argument
967 vp9_fht16x16_c(const int16_t *input, int16_t *output, int stride, int tx_type) argument
1332 vp9_fdct32x32_c(const int16_t *input, int16_t *out, int stride) argument
1360 vp9_fdct32x32_rd_c(const int16_t *input, int16_t *out, int stride) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_lighttmp.h57 const GLuint vstride = input->stride;
59 const GLuint nstride = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->stride;
86 store->LitColor[0].stride = 16;
87 store->LitColor[1].stride = 16;
240 const GLuint vstride = input->stride;
242 const GLuint nstride = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->stride;
264 store->LitColor[0].stride = 16;
265 store->LitColor[1].stride = 16;
417 const GLuint nstride = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->stride;
444 store->LitColor[0].stride
[all...]
/external/libvpx/libvpx/test/
H A Ddct16x16_test.cc261 typedef void (*fdct_t)(const int16_t *in, int16_t *out, int stride);
262 typedef void (*idct_t)(const int16_t *in, uint8_t *out, int stride);
263 typedef void (*fht_t) (const int16_t *in, int16_t *out, int stride,
265 typedef void (*iht_t) (const int16_t *in, uint8_t *out, int stride,
271 void fdct16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
272 vp9_fdct16x16_c(in, out, stride);
275 void fht16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
276 vp9_fht16x16_c(in, out, stride, tx_type);
284 virtual void RunFwdTxfm(int16_t *in, int16_t *out, int stride) = 0;
286 virtual void RunInvTxfm(int16_t *out, uint8_t *dst, int stride)
435 RunFwdTxfm(int16_t *in, int16_t *out, int stride) argument
438 RunInvTxfm(int16_t *out, uint8_t *dst, int stride) argument
478 RunFwdTxfm(int16_t *in, int16_t *out, int stride) argument
481 RunInvTxfm(int16_t *out, uint8_t *dst, int stride) argument
[all...]
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dutil.js50 var stride = 2 + (sep ? 1 : 0);
51 var hexrep = new Array(b.length * stride);
54 if (sep) hexrep[i * stride + 0] = sep;
55 hexrep[i * stride + stride - 2] = hexchars.charAt((b[i] >> 4) & 15);
56 hexrep[i * stride + stride - 1] = hexchars.charAt(b[i] & 15);
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dtools_common.c126 ptr += yuv_frame->stride[plane];
226 const int stride = img->stride[plane]; local
233 buf += stride;
243 const int stride = img->stride[plane]; local
252 buf += stride;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A Ddequant_idct_neon.c20 int stride) {
46 dst0 += stride;
48 dst0 += stride;
50 dst0 += stride;
135 dst0 += stride;
137 dst0 += stride;
139 dst0 += stride;
16 vp8_dequant_idct_add_neon( int16_t *input, int16_t *dq, unsigned char *dst, int stride) argument

Completed in 1905 milliseconds

<<11121314151617181920>>