Searched defs:stride (Results 426 - 450 of 693) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libwebp/webp/
H A Ddecode.h79 // Upon return, the Y buffer has a stride returned as '*stride', while U and V
80 // have a common stride returned as '*uv_stride'.
86 int* stride, int* uv_stride);
179 int stride; // stride in bytes from one scanline to the next. member in struct:WebPRGBABuffer
185 int y_stride; // luma stride
187 int a_stride; // alpha stride
270 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
279 // 'output_buffer_size' and the stride (distanc
352 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
[all...]
/external/chromium_org/third_party/libyuv/source/
H A Dscale_common.cc153 intptr_t stride = src_stride; local
157 src_ptr[stride + 0] + src_ptr[stride + 1] +
158 src_ptr[stride + 2] + src_ptr[stride + 3] +
159 src_ptr[stride * 2 + 0] + src_ptr[stride * 2 + 1] +
160 src_ptr[stride * 2 + 2] + src_ptr[stride * 2 + 3] +
161 src_ptr[stride *
189 intptr_t stride = src_stride; local
534 intptr_t stride = src_stride; local
560 intptr_t stride = src_stride; local
586 intptr_t stride = src_stride; local
606 intptr_t stride = src_stride; local
[all...]
/external/chromium_org/third_party/libyuv/util/
H A Dssim.cc102 int xo, int yo, int W, int H, int stride) {
104 org += (yo - KERNEL) * stride;
106 rec += (yo - KERNEL) * stride;
108 for (int y_ = 0; y_ < KERNEL_SIZE; ++y_, org += stride, rec += stride) {
129 int xo, int yo, int stride,
135 org += yo * stride + xo;
136 rec += yo * stride + xo;
138 const int dy1 = y * stride;
139 const int dy2 = y * stride;
101 GetSSIM(const uint8 *org, const uint8 *rec, int xo, int yo, int W, int H, int stride) argument
128 GetSSIMFullKernel(const uint8 *org, const uint8 *rec, int xo, int yo, int stride, double area_weight) argument
278 const int stride = image_width; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug.c444 * \param stride row stride in bytes
449 unsigned stride,
486 i = y * stride + x * cpp;
533 transfer->stride,
643 float *rgba, unsigned stride)
680 float *ptr = rgba + (stride * y * 4);
446 debug_dump_image(const char *prefix, unsigned format, unsigned cpp, unsigned width, unsigned height, unsigned stride, const void *data) argument
641 debug_dump_float_rgba_bmp(const char *filename, unsigned width, unsigned height, float *rgba, unsigned stride) argument
H A Du_format.h733 size_t stride,
736 return util_format_get_nblocksy(format, height) * stride;
732 util_format_get_2d_size(enum pipe_format format, size_t stride, unsigned height) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_resource_texture.c154 return y * tex->stride + x;
214 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
219 tex->stride = get_pot_stride(pt->format, pt->width0);
228 tex->stride, tex->total_nblocksy, tex->stride * tex->total_nblocksy);
252 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
259 tex->stride, tex->total_nblocksy, tex->stride * tex->total_nblocksy);
305 tex->stride = align(nblocks * util_format_get_blocksize(pt->format) * 2, 4);
344 tex->stride
836 i915_transfer_inline_write( struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
1007 unsigned stride; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/noop/
H A Dnoop_pipe.c95 unsigned stride; local
101 stride = util_format_get_stride(templ->format, templ->width0);
104 nresource->size = stride * templ->height0 * templ->depth0;
164 transfer->stride = 1;
201 unsigned stride,
195 noop_transfer_inline_write(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Devergreen_compute.c94 vb->stride = 1;
862 transfer->stride = 0;
895 unsigned stride,
888 r600_compute_global_transfer_inline_write( struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
H A Dr600_texture.c524 unsigned stride = 0; local
535 buf = rscreen->ws->buffer_from_handle(rscreen->ws, whandle, &stride);
557 stride, buf, FALSE, &surface);
661 trans->transfer.stride = staging_depth->surface.level[level].pitch_bytes;
696 trans->transfer.stride =
705 trans->transfer.stride = rtex->surface.level[level].pitch_bytes;
760 transfer->box.y / util_format_get_blockheight(format) * transfer->stride +
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_dump.c463 unsigned stride,
470 else if (stride)
471 size = util_format_get_nblocksy(format, box->height) * stride;
460 trace_dump_box_bytes(const void *data, enum pipe_format format, const struct pipe_box *box, unsigned stride, unsigned slice_stride) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
H A Ddri2.c277 whandle.stride = buf->pitch;
317 /* because we get the handle and stride */
363 buffer->base.pitch = whandle.stride;
482 whandle.stride = pitch * util_format_get_blocksize(pf);
593 *value = whandle.stride;
666 int stride, dri_components; local
699 stride = strides[0] /4;
702 names[0], stride, loaderPrivate);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_driver.c1105 whandle.stride,
1185 unsigned handle, stride; local
1206 if (kms_bo_get_prop(bo, KMS_PITCH, &stride))
1217 stride,
1248 unsigned stride; local
1251 if (kms_bo_get_prop(ms->root_bo, KMS_PITCH, &stride))
1262 stride,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_fbo.c116 int stride; local
136 * we then return a pointer to the bottom of it with a negative stride.
143 x, y, w, h, mode, &map, &stride);
146 map += (h - 1) * stride;
147 stride = -stride;
152 x, y, w, h, map, stride);
155 *out_stride = stride;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_fbo.c116 int stride; local
136 * we then return a pointer to the bottom of it with a negative stride.
143 x, y, w, h, mode, &map, &stride);
146 map += (h - 1) * stride;
147 stride = -stride;
152 x, y, w, h, map, stride);
155 *out_stride = stride;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_fbo.c116 int stride; local
136 * we then return a pointer to the bottom of it with a negative stride.
143 x, y, w, h, mode, &map, &stride);
146 map += (h - 1) * stride;
147 stride = -stride;
152 x, y, w, h, map, stride);
155 *out_stride = stride;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_fbo.c242 int stride, flip_stride; local
330 stride = rrb->map_pitch;
334 flip_stride = -stride;
336 flip_stride = stride;
341 map += (int)y * stride;
H A Dradeon_texture.c66 "%s dst %p, stride %u, src %p, stride %u, "
211 * \param rowStrideOut returns row stride in bytes
220 GLint *stride)
248 *stride = get_texture_image_row_stride(rmesa, texImage->TexFormat, width, 0, texImage->TexObject->Target);
257 *stride = lvl->rowstride;
258 *map = base + (slice * height) * *stride;
264 *stride = _mesa_format_row_stride(texImage->TexFormat, width);
265 *map = image->base.Buffer + (slice * height) * *stride;
268 *map += y * *stride
214 radeon_map_texture_image(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h, GLbitfield mode, GLubyte **map, GLint *stride) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_fbo.c242 int stride, flip_stride; local
330 stride = rrb->map_pitch;
334 flip_stride = -stride;
336 flip_stride = stride;
341 map += (int)y * stride;
H A Dradeon_texture.c66 "%s dst %p, stride %u, src %p, stride %u, "
211 * \param rowStrideOut returns row stride in bytes
220 GLint *stride)
248 *stride = get_texture_image_row_stride(rmesa, texImage->TexFormat, width, 0, texImage->TexObject->Target);
257 *stride = lvl->rowstride;
258 *map = base + (slice * height) * *stride;
264 *stride = _mesa_format_row_stride(texImage->TexFormat, width);
265 *map = image->base.Buffer + (slice * height) * *stride;
268 *map += y * *stride
214 radeon_map_texture_image(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h, GLbitfield mode, GLubyte **map, GLint *stride) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vertex_generic.c998 const GLuint stride = vtx->vertex_size; local
1001 for (i = 0 ; i < count ; i++, v += stride) {
1093 /* If stride is zero, BackfaceColorPtr is constant across the VB, so
1096 * t_vb_lighttmp.h and has a stride of 4 dwords.
1098 if (VB->BackfaceColorPtr && VB->BackfaceColorPtr->stride) {
1099 assert(VB->BackfaceColorPtr->stride == 4 * sizeof(GLfloat));
1108 assert(VB->BackfaceSecondaryColorPtr->stride == 4 * sizeof(GLfloat));
1136 if (VB->BackfaceColorPtr && VB->BackfaceColorPtr->stride) {
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_array.c363 GLint stride = exec->array.inputs[i]->Stride; local
364 printf("attr %2d: size %d stride %d enabled %d "
368 stride,
381 int n = (count * stride) / 4;
400 * to point at a zero-stride current value "array".
516 * be user-provided arrays, other will be zero-stride const-valued arrays.
/external/chromium_org/ui/base/ime/chromeos/
H A Dcharacter_composer.cc54 SequenceIterator(const uint16* ptr, int stride) argument
55 : ptr_(ptr), stride_(stride) {}
58 int stride() const {return stride_;} function in class:__anon16634::SequenceIterator
82 DCHECK(l.stride() == r.stride() && l.stride() > 0 && d%l.stride() == 0);
83 return d/l.stride();
87 DCHECK(l.stride() == r.stride());
[all...]
/external/deqp/framework/common/
H A DtcuTestLog.cpp282 void TestLog::writeImage (const char* name, const char* description, qpImageCompressionMode compressionMode, qpImageFormat format, int width, int height, int stride, const void* data) argument
284 if (qpTestLog_writeImage(m_log, name, description, compressionMode, format, width, height, stride, data) == DE_FALSE)
/external/deqp/framework/opengl/
H A DgluDrawUtil.cpp48 int stride; //!< Stride or 0 if using default stride. member in struct:glu::__anon19731::VertexAttributeDescriptor
63 , stride (stride_)
74 , stride (0)
289 0, // default stride
308 const bool srcHasCustomStride = srcPtr.stride != 0 && srcPtr.stride != elementSize;
309 const bool dstHasCustomStride = dstVA.stride != 0 && dstVA.stride != elementSize;
313 const int dstStride = dstVA.stride !
[all...]
/external/deqp/modules/gles2/performance/
H A Des2pTextureUploadTests.cpp219 int stride = deAlign32(pixelSize*m_texSize, m_alignment); local
221 m_texData.resize(stride*m_texSize);
223 tcu::PixelBufferAccess access (texFmt, m_texSize, m_texSize, 1, stride, 0, &m_texData[0]);

Completed in 986 milliseconds

<<11121314151617181920>>