Searched defs:stride (Results 126 - 150 of 693) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_span.c68 intel_offset_S8(uint32_t stride, uint32_t x, uint32_t y, bool swizzled) argument
73 uint32_t row_size = 64 * stride;
/external/mesa3d/src/mesa/math/
H A Dm_clip_tmp.h50 const GLuint stride = clip_vec->stride; local
130 const GLuint stride = clip_vec->stride; local
187 const GLuint stride = clip_vec->stride; local
223 const GLuint stride = clip_vec->stride; local
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) )
/external/pixman/pixman/
H A Dpixman-arm-neon.c188 int stride,
196 /* stride is always multiple of 32bit units in pixman */
197 uint32_t byte_stride = stride * sizeof(uint32_t);
186 arm_neon_fill(pixman_implementation_t *imp, uint32_t * bits, int stride, int bpp, int x, int y, int width, int height, uint32_t _xor) argument
H A Dpixman-arm-simd.c85 int stride, /* in 32-bit words */
93 /* stride is always multiple of 32bit units in pixman */
94 uint32_t byte_stride = stride * sizeof(uint32_t);
83 arm_simd_fill(pixman_implementation_t *imp, uint32_t * bits, int stride, int bpp, int x, int y, int width, int height, uint32_t _xor) argument
H A Dpixman-edge-imp.h36 int stride = (image)->bits.rowstride; local
39 line = buf + pixman_fixed_to_int (y) * stride;
177 line += stride;
/external/pixman/test/
H A Dfetch-test.c17 int stride; member in struct:__anon28862
164 testcases[i].stride);
H A Doob-test.c9 int stride; member in struct:__anon28868
68 char *data = malloc (info->stride * info->height);
71 for (i = 0; i < info->height * info->stride; ++i)
74 return pixman_image_create_bits (info->format, info->width, info->height, (uint32_t *)data, info->stride);
/external/skia/gm/
H A Dtexdata.cpp44 static const int stride = 2 * S; local
56 gTextureData[offset + y * stride + x] = gray;
63 gTextureData[offset + y * stride + x] = white;
67 offset = S * stride;
70 gTextureData[offset + y * stride + x] = black;
74 offset = S * stride + S;
77 gTextureData[offset + y * stride + x] = gray;
123 gTextureData[offset + y * stride + x] =
129 4 * stride);
/external/skia/src/gpu/gl/
H A DGrGLVertexArray.cpp20 GrGLsizei stride,
33 array->fStride != stride ||
41 stride,
47 array->fStride = stride;
14 set(const GrGpuGL* gpu, int index, GrGLVertexBuffer* buffer, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, GrGLvoid* offset) argument
/external/skia/src/utils/
H A DSkPathUtils.cpp20 // assumes stride is in bytes
100 int w, int h, int stride) {
104 //l2p_fn(path, &bitmap[i*stride], i, w);
105 Line2path_span(path, &bitmap[i*stride], i, w);
112 int w, int h, int stride) {
119 const char* line = &bitmap[y * stride];
98 BitsToPath_Path(SkPath* path, const char* bitmap, int w, int h, int stride) argument
110 BitsToPath_Region(SkPath* path, const char* bitmap, int w, int h, int stride) argument
/external/aac/libSBRdec/src/
H A Dpsbitdec.cpp159 /*!< output array size: nrElements*stride */
160 UCHAR stride, /*!< 1=dflt, 2=half freq. resolution */
178 aIndex[i] = aPrevFrameIndex[i*stride] + aIndex[i];
188 if (stride==2) {
189 for (i=nrElements*stride-1; i>0; i--) {
154 deltaDecodeArray(SCHAR enable, SCHAR *aIndex, SCHAR *aPrevFrameIndex, SCHAR DtDf, UCHAR nrElements, UCHAR stride, SCHAR minIdx, SCHAR maxIdx) argument
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLVertexArrayObjectOES.h59 , stride(16)
74 GLsizei stride; member in class:blink::FINAL::FINAL
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DVertexAttribute.h25 GLuint stride; // 0 means natural stride member in struct:gl::VertexAttribute
49 return static_cast<T>(attrib.stride);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dvertexconversion.h150 // static void convertArray(const void *in, std::size_t stride, std::size_t n, void *out): convert an array of vertices. Input may be strided, but output will be unstrided.
161 static void convertArray(const uint8_t *input, size_t stride, size_t n, uint8_t *output) argument
167 const InputType *ein = reinterpret_cast<const InputType*>(input + i * stride);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddct32x32_test.cc75 typedef void (*FwdTxfmFunc)(const int16_t *in, tran_low_t *out, int stride);
76 typedef void (*InvTxfmFunc)(const tran_low_t *in, uint8_t *out, int stride);
82 void idct32x32_10(const tran_low_t *in, uint8_t *out, int stride) { argument
83 vp9_high_idct32x32_1024_add_c(in, out, stride, 10);
86 void idct32x32_12(const tran_low_t *in, uint8_t *out, int stride) { argument
87 vp9_high_idct32x32_1024_add_c(in, out, stride, 12);
191 const int stride = 32; local
192 vp9_fdct32x32_c(input_block, output_ref_block, stride);
193 ASM_REGISTER_STATE_CHECK(fwd_txfm_(input_block, output_block, stride));
230 const int stride local
[all...]
H A Dy4m_test.cc59 const int stride = img->stride[plane]; local
67 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
H A Didct_dequant_full_2x_neon.c21 int stride) {
54 dst0 += stride;
56 dst1 += stride;
58 dst0 += stride;
60 dst1 += stride;
63 dst0 += stride;
65 dst1 += stride;
170 dst0 += stride;
172 dst1 += stride;
174 dst0 += stride;
17 idct_dequant_full_2x_neon( int16_t *q, int16_t *dq, unsigned char *dst, int stride) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_intrapred16_dspr2.c17 void vp9_h_predictor_16x16_dspr2(uint8_t *dst, ptrdiff_t stride, argument
62 "add %[dst], %[dst], %[stride] \n\t"
68 "add %[dst], %[dst], %[stride] \n\t"
74 "add %[dst], %[dst], %[stride] \n\t"
80 "add %[dst], %[dst], %[stride] \n\t"
86 "add %[dst], %[dst], %[stride] \n\t"
92 "add %[dst], %[dst], %[stride] \n\t"
98 "add %[dst], %[dst], %[stride] \n\t"
104 "add %[dst], %[dst], %[stride] \n\t"
110 "add %[dst], %[dst], %[stride] \
164 vp9_dc_predictor_16x16_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
H A Dvp9_intrapred4_dspr2.c17 void vp9_h_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, argument
31 "add %[dst], %[dst], %[stride] \n\t"
33 "add %[dst], %[dst], %[stride] \n\t"
35 "add %[dst], %[dst], %[stride] \n\t"
40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride)
44 void vp9_dc_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, argument
69 "add %[dst], %[dst], %[stride] \n\t"
71 "add %[dst], %[dst], %[stride] \n\t"
73 "add %[dst], %[dst], %[stride] \
86 vp9_tm_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_idct_intrin_sse2.h118 dest += stride; \
121 static INLINE void write_buffer_8x16(uint8_t *dest, __m128i *in, int stride) { argument
/external/chromium_org/third_party/mesa/src/src/egl/wayland/wayland-drm/
H A Dwayland-drm.c90 buffer->stride[0] = stride0;
92 buffer->stride[1] = stride1;
94 buffer->stride[2] = stride2;
119 uint32_t stride, uint32_t format)
134 name, width, height, format, 0, stride, 0, 0, 0, 0);
117 drm_create_buffer(struct wl_client *client, struct wl_resource *resource, uint32_t id, uint32_t name, int32_t width, int32_t height, uint32_t stride, uint32_t format) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt_emit.c127 unsigned stride = vert_info->stride; local
160 stride,
197 unsigned stride = vert_info->stride; local
227 vertex_data, stride, count - 1);
H A Ddraw_vs_variant.c69 unsigned stride,
77 stride,
91 unsigned stride = vsvg->temp_vertex_stride; local
96 for (j = 0; j < count; j++, ptr += stride) {
114 unsigned stride = vsvg->temp_vertex_stride; local
119 for (j = 0; j < count; j++, ptr += stride) {
66 vsvg_set_buffer( struct draw_vs_variant *variant, unsigned buffer, const void *ptr, unsigned stride, unsigned max_index ) argument

Completed in 2408 milliseconds

1234567891011>>