HomeSort by relevance Sort by last modified time
    Searched refs:stride (Results 201 - 225 of 1748) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve5x5.cpp 358 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; local
366 const uchar4 *py0 = (const uchar4 *)(pin + stride * y0);
367 const uchar4 *py1 = (const uchar4 *)(pin + stride * y1);
368 const uchar4 *py2 = (const uchar4 *)(pin + stride * y2);
369 const uchar4 *py3 = (const uchar4 *)(pin + stride * y3);
370 const uchar4 *py4 = (const uchar4 *)(pin + stride * y4);
407 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; local
415 const uchar2 *py0 = (const uchar2 *)(pin + stride * y0)
456 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; local
505 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; local
554 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; local
603 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 44 int stride,
54 yptr = y_mb_ptr + (mv_row >> 3) * stride + (mv_col >> 3);
58 x->subpixel_predict16x16(yptr, stride,
63 vp8_copy_mem16x16(yptr, stride, &pred[0], 16);
69 stride = (stride + 1) >> 1;
70 offset = (mv_row >> 3) * stride + (mv_col >> 3);
76 x->subpixel_predict8x8(uptr, stride,
78 x->subpixel_predict8x8(vptr, stride,
83 vp8_copy_mem8x8(uptr, stride, &pred[256], 8)
273 int stride; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 38 int stride,
45 vp9_build_inter_predictor(y_mb_ptr, stride,
53 stride = (stride + 1) >> 1;
55 vp9_build_inter_predictor(u_mb_ptr, stride,
63 vp9_build_inter_predictor(v_mb_ptr, stride,
73 unsigned int stride,
111 byte += stride - block_size;
120 int stride,
142 x->plane[0].src.stride = stride
233 int stride; local
    [all...]
vp9_encodemb.c 43 int stride) {
45 xd->inv_txm4x4_1_add(dqcoeff, dest, stride);
47 xd->inv_txm4x4_add(dqcoeff, dest, stride);
52 int stride) {
54 vp9_short_idct8x8_1_add(dqcoeff, dest, stride);
56 vp9_short_idct10_8x8_add(dqcoeff, dest, stride);
58 vp9_short_idct8x8_add(dqcoeff, dest, stride);
63 int stride) {
65 vp9_short_idct16x16_1_add(dqcoeff, dest, stride);
67 vp9_short_idct10_16x16_add(dqcoeff, dest, stride);
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
glUtils.cpp 332 int size, GLenum type, unsigned int stride,
336 if (stride == 0) stride = vsize;
338 if (stride == vsize) {
344 src += stride;
350 int size, GLenum type, unsigned int stride,
356 if (stride == 0) stride = vsize;
358 if (stride == vsize) {
363 src += stride;
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
glUtils.cpp 332 int size, GLenum type, unsigned int stride,
336 if (stride == 0) stride = vsize;
338 if (stride == vsize) {
344 src += stride;
350 int size, GLenum type, unsigned int stride,
356 if (stride == 0) stride = vsize;
358 if (stride == vsize) {
363 src += stride;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
varray.c 117 * \param stride stride between elements, in elements
127 GLint size, GLenum type, GLsizei stride,
231 if (stride < 0) {
232 _mesa_error( ctx, GL_INVALID_VALUE, "%s(stride=%d)", func, stride );
260 array->Stride = stride;
261 array->StrideB = stride ? stride : elementSize
    [all...]
  /external/mesa3d/src/mesa/main/
varray.c 117 * \param stride stride between elements, in elements
127 GLint size, GLenum type, GLsizei stride,
231 if (stride < 0) {
232 _mesa_error( ctx, GL_INVALID_VALUE, "%s(stride=%d)", func, stride );
260 array->Stride = stride;
261 array->StrideB = stride ? stride : elementSize
    [all...]
  /external/chromium_org/media/base/
video_frame_unittest.cc 30 memset(y_plane, color, frame->stride(VideoFrame::kYPlane));
31 y_plane += frame->stride(VideoFrame::kYPlane);
36 memset(u_plane, 0x80, frame->stride(VideoFrame::kUPlane));
37 memset(v_plane, 0x80, frame->stride(VideoFrame::kVPlane));
38 u_plane += frame->stride(VideoFrame::kUPlane);
39 v_plane += frame->stride(VideoFrame::kVPlane);
47 ASSERT_EQ(yv12_frame->stride(VideoFrame::kUPlane),
48 yv12_frame->stride(VideoFrame::kVPlane));
68 yv12_frame->stride(VideoFrame::kYPlane),
69 yv12_frame->stride(VideoFrame::kUPlane)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
PowTest.java 68 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
69 float[] ref = new float[input_size * stride];
71 for (int j = 0; j < stride - skip; j++) {
72 int idx= i * stride * 2 + j;
73 int idxRef = i * (stride - skip) + j;
74 ref[idxRef] = (float)Math.pow((double)in[idx], (double)in[idx+stride]);
PowrTest.java 68 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
69 float[] ref = new float[input_size * stride];
71 for (int j = 0; j < stride - skip; j++) {
72 int idx= i * stride * 2 + j;
73 int idxRef = i * (stride - skip) + j;
74 ref[idxRef] = (float)Math.pow((double)in[idx], (double)in[idx+stride]);
  /external/chromium_org/media/cdm/ppapi/
libvpx_cdm_video_decoder.cc 149 const int y_size = vpx_image_->stride[VPX_PLANE_Y] * vpx_image_->d_h;
151 const int u_size = vpx_image_->stride[VPX_PLANE_U] * uv_rows;
152 const int v_size = vpx_image_->stride[VPX_PLANE_V] * uv_rows;
186 vpx_image_->stride[VPX_PLANE_Y]);
188 vpx_image_->stride[VPX_PLANE_U]);
190 vpx_image_->stride[VPX_PLANE_V]);
  /external/chromium_org/ppapi/examples/video_effects/
video_effects.cc 143 std::vector<uint8_t> tmp_row(image_data.stride());
146 uint8_t* top = image + i * image_data.stride();
147 uint8_t* bottom = image + (size.height() - 1 - i) * image_data.stride();
148 memcpy(&tmp_row[0], top, image_data.stride());
149 memcpy(top, bottom, image_data.stride());
150 memcpy(bottom, &tmp_row[0], image_data.stride());
  /external/chromium_org/third_party/libwebp/enc/
filter.c 100 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) {
103 if (needs_filter(p + i, stride, thresh)) {
104 do_filter2(p + i, stride);
109 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) {
112 if (needs_filter(p + i * stride, 1, thresh)) {
113 do_filter2(p + i * stride, 1);
118 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) {
121 p += 4 * stride;
122 SimpleVFilter16(p, stride, thresh);
126 static void SimpleHFilter16i(uint8_t* p, int stride, int thresh)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_vector.c 81 v->stride = 4 * sizeof(GLfloat);
101 v->stride = 4 * sizeof(GLfloat);
151 for (; d != v->start; STRIDE_F(d, v->stride), i++)
158 for (; i < count; STRIDE_F(d, v->stride), i++)
163 for (; i < count; STRIDE_F(d, v->stride), i++)
174 i++, STRIDE_F(d, v->stride)) {
  /external/eigen/Eigen/src/Core/
Map.h 26 * The type passed here must be a specialization of the Stride template, see examples below.
40 * Here's an example of mapping an array as a vector, specifying an inner stride, that is, the pointer
41 * increment between two consecutive coefficients. Here, we're specifying the inner stride as a compile-time
46 * Here's an example of mapping an array while specifying an outer stride. Here, since we're mapping
47 * as a column-major matrix, 'outer stride' means the pointer increment between two consecutive columns.
48 * Here, we're specifying the outer stride as a runtime parameter. Note that here \c OuterStride<> is
54 * For more details and for an example of specifying both an inner and an outer stride, see class Stride.
137 * \param stride optional Stride object, passing the strides
    [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
systemdependent.c 60 void recon_b_ppc(short *diff_ptr, unsigned char *pred_ptr, unsigned char *dst_ptr, int stride);
61 void recon2b_ppc(short *diff_ptr, unsigned char *pred_ptr, unsigned char *dst_ptr, int stride);
62 void recon4b_ppc(short *diff_ptr, unsigned char *pred_ptr, unsigned char *dst_ptr, int stride);
80 void vp8_recon_b_c(short *diff_ptr, unsigned char *pred_ptr, unsigned char *dst_ptr, int stride);
81 void vp8_recon2b_c(short *diff_ptr, unsigned char *pred_ptr, unsigned char *dst_ptr, int stride);
82 void vp8_recon4b_c(short *diff_ptr, unsigned char *pred_ptr, unsigned char *dst_ptr, int stride);
  /external/libvpx/libvpx/vp8/encoder/ppc/
csystemdependent.c 47 void (*vp8_subtract_mby)(short *diff, unsigned char *src, unsigned char *pred, int stride);
48 void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
64 extern void subtract_mby_c(short *diff, unsigned char *src, unsigned char *pred, int stride);
65 extern void subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
96 extern void vp8_subtract_mby_ppc(short *diff, unsigned char *src, unsigned char *pred, int stride);
97 extern void vp8_subtract_mbuv_ppc(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.h 39 static int scaled_buffer_offset(int x_offset, int y_offset, int stride,
43 return y * stride + x;
47 uint8_t *src, int stride,
53 dst->buf = src + scaled_buffer_offset(x, y, stride, scale);
54 dst->stride = stride;
  /external/mesa3d/src/mesa/math/
m_vector.c 81 v->stride = 4 * sizeof(GLfloat);
101 v->stride = 4 * sizeof(GLfloat);
151 for (; d != v->start; STRIDE_F(d, v->stride), i++)
158 for (; i < count; STRIDE_F(d, v->stride), i++)
163 for (; i < count; STRIDE_F(d, v->stride), i++)
174 i++, STRIDE_F(d, v->stride)) {
  /external/webp/src/enc/
filter.c 100 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) {
103 if (needs_filter(p + i, stride, thresh)) {
104 do_filter2(p + i, stride);
109 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) {
112 if (needs_filter(p + i * stride, 1, thresh)) {
113 do_filter2(p + i * stride, 1);
118 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) {
121 p += 4 * stride;
122 SimpleVFilter16(p, stride, thresh);
126 static void SimpleHFilter16i(uint8_t* p, int stride, int thresh)
    [all...]
  /frameworks/rs/driver/runtime/
rs_allocation.c 110 const uint32_t stride = alloc->mHal.drvState.lod[0].stride; local
112 uint8_t *dp = &p[(sizeOf * x) + (y * stride) +
113 (z * stride * dimY)];
175 const uint32_t stride = alloc->mHal.drvState.lod[0].stride; local
176 return &p[(eSize * x) + (y * stride)];
184 const uint32_t stride = alloc->mHal.drvState.lod[0].stride; local
186 return &p[(eSize * x) + (y * stride) + (z * stride * dimY)]
201 const uint32_t stride = alloc->mHal.drvState.lod[0].stride; local
210 const uint32_t stride = alloc->mHal.drvState.lod[0].stride; local
272 const size_t stride = alloc->mHal.drvState.lod[1].stride; local
286 const size_t stride = alloc->mHal.drvState.lod[2].stride; local
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmValidate.cpp 63 bool GLEScmValidate::vertexPointerParams(GLint size,GLsizei stride) {
64 return ((size >=2) && (size <= 4)) && (stride >=0) ;
67 bool GLEScmValidate::colorPointerParams(GLint size,GLsizei stride) {
68 return ((size >=3) && (size <= 4)) && (stride >=0) ;
71 bool GLEScmValidate::texCoordPointerParams(GLint size,GLsizei stride) {
72 return ((size >=2) && (size <= 4)) && (stride >=0) ;
  /external/chromium_org/media/tools/shader_bench/
cpu_color_painter.cc 81 video_frame->stride(media::VideoFrame::kYPlane),
82 video_frame->stride(media::VideoFrame::kUPlane),
83 rgba_frame->stride(0),
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_transfer.c 16 unsigned stride,
59 transfer->stride, /* bytes */
64 stride, /* bytes */

Completed in 1918 milliseconds

1 2 3 4 5 6 7 891011>>