Searched refs:stride (Results 226 - 250 of 1490) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
H A Di915_sw_winsys.h47 unsigned stride; member in struct:i915_sw_buffer
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_norm_tmp.h51 const GLuint stride = in->stride; local
118 const GLuint stride = in->stride; local
183 const GLuint stride = in->stride; local
212 const GLuint stride = in->stride; local
244 const GLuint stride = in->stride; local
274 const GLuint stride = in->stride; local
304 const GLuint stride = in->stride; local
350 const GLuint stride = in->stride; local
[all...]
H A Dm_translate.c41 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
534 GLuint stride,
532 trans_4_GLubyte_4ub_raw(GLubyte (t)[4], CONST void *Ptr, GLuint stride, ARGS ) argument
627 _math_trans_1f(GLfloat *to, CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
640 _math_trans_1ui(GLuint *to, CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
653 _math_trans_1ub(GLubyte *to, CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
667 _math_trans_4ub(GLubyte (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
681 _math_trans_4chan( GLchan (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
701 _math_trans_4us(GLushort (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
715 _math_trans_4f(GLfloat (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
729 _math_trans_4fn(GLfloat (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
743 _math_trans_3fn(GLfloat (to)[3], CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
[all...]
/external/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_frame_win.h35 int stride,
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_wrapper.cc31 uint32_t* stride) {
51 *stride = request.pitch;
144 uint32_t stride,
155 stride,
277 uint32_t* stride,
282 if (!DrmCreateDumbBuffer(fd_, info, handle, stride))
285 if (!MapDumbBuffer(fd_, *handle, info.getSafeSize(*stride), pixels)) {
295 uint32_t stride,
299 munmap(pixels, info.getSafeSize(stride));
28 DrmCreateDumbBuffer(int fd, const SkImageInfo& info, uint32_t* handle, uint32_t* stride) argument
140 AddFramebuffer(uint32_t width, uint32_t height, uint8_t depth, uint8_t bpp, uint32_t stride, uint32_t handle, uint32_t* framebuffer) argument
275 CreateDumbBuffer(const SkImageInfo& info, uint32_t* handle, uint32_t* stride, void** pixels) argument
293 DestroyDumbBuffer(const SkImageInfo& info, uint32_t handle, uint32_t stride, void* pixels) argument
/external/deqp/framework/opengl/
H A DgluDrawUtil.hpp118 int stride; //!< Element stride. member in struct:glu::VertexArrayPointer
127 , stride (stride_)
137 , stride (0)
246 inline VertexArrayBinding NAME (const std::string& name, int offset, int numComponents, int numElements, int stride, const DATATYPE* data) \
248 return VertexArrayBinding(BindingPoint(name, offset), VertexArrayPointer(TYPE, CONVERT, numComponents, numElements, stride, data)); \
250 inline VertexArrayBinding NAME (const std::string& name, int numComponents, int numElements, int stride, const DATATYPE* data) \
252 return NAME(name, 0, numComponents, numElements, stride, data); \
254 inline VertexArrayBinding NAME (int location, int numComponents, int numElements, int stride, const DATATYPE* data) \
256 return VertexArrayBinding(BindingPoint(location), VertexArrayPointer(TYPE, CONVERT, numComponents, numElements, stride, dat
[all...]
/external/libvpx/libvpx/test/
H A Ddct32x32_test.cc40 void reference_32x32_dct_1d(const double in[32], double out[32], int stride) { argument
74 typedef void (*fwd_txfm_t)(const int16_t *in, int16_t *out, int stride);
75 typedef void (*inv_txfm_t)(const int16_t *in, uint8_t *out, int stride);
151 const int stride = 32; local
152 vp9_fdct32x32_c(input_block, output_ref_block, stride);
153 REGISTER_STATE_CHECK(fwd_txfm_(input_block, output_block, stride));
189 const int stride = 32; local
190 vp9_fdct32x32_c(input_extreme_block, output_ref_block, stride);
191 REGISTER_STATE_CHECK(fwd_txfm_(input_extreme_block, output_block, stride));
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_temporal_filter.c36 int stride,
51 uv_stride = (stride + 1) >> 1;
54 uv_stride = stride;
58 vp9_build_inter_predictor(y_mb_ptr, stride,
84 unsigned int stride,
121 byte += stride - block_size;
130 int stride) {
150 x->plane[0].src.stride = stride;
152 xd->plane[0].pre[0].stride
32 temporal_filter_predictors_mb_c(MACROBLOCKD *xd, uint8_t *y_mb_ptr, uint8_t *u_mb_ptr, uint8_t *v_mb_ptr, int stride, int uv_block_size, int mv_row, int mv_col, uint8_t *pred, struct scale_factors *scale, int x, int y) argument
83 vp9_temporal_filter_apply_c(uint8_t *frame1, unsigned int stride, uint8_t *frame2, unsigned int block_size, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count) argument
127 temporal_filter_find_matching_mb_c(VP9_COMP *cpi, uint8_t *arf_frame_buf, uint8_t *frame_ptr_buf, int stride) argument
241 int stride; local
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_texture.h49 unsigned stride[SP_MAX_TEXTURE_2D_LEVELS]; member in struct:softpipe_resource
/external/mesa3d/src/gallium/include/state_tracker/
H A Ddrm_driver.h34 unsigned stride; member in struct:winsys_handle
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.h48 EGLint *name, EGLint *handle, EGLint *stride);
/external/mesa3d/src/gallium/winsys/i915/drm/
H A Di915_drm_buffer.c57 unsigned *stride, unsigned height,
75 *stride, height, 1,
81 *stride = pitch;
95 unsigned *stride)
114 *stride = whandle->stride;
128 unsigned stride)
147 whandle->stride = stride;
56 i915_drm_buffer_create_tiled(struct i915_winsys *iws, unsigned *stride, unsigned height, enum i915_winsys_buffer_tile *tiling, enum i915_winsys_buffer_type type) argument
92 i915_drm_buffer_from_handle(struct i915_winsys *iws, struct winsys_handle *whandle, enum i915_winsys_buffer_tile *tiling, unsigned *stride) argument
125 i915_drm_buffer_get_handle(struct i915_winsys *iws, struct i915_winsys_buffer *buffer, struct winsys_handle *whandle, unsigned stride) argument
/external/mesa3d/src/gallium/winsys/i915/sw/
H A Di915_sw_winsys.h47 unsigned stride; member in struct:i915_sw_buffer
/external/mesa3d/src/mesa/math/
H A Dm_norm_tmp.h51 const GLuint stride = in->stride; local
118 const GLuint stride = in->stride; local
183 const GLuint stride = in->stride; local
212 const GLuint stride = in->stride; local
244 const GLuint stride = in->stride; local
274 const GLuint stride = in->stride; local
304 const GLuint stride = in->stride; local
350 const GLuint stride = in->stride; local
[all...]
H A Dm_translate.c41 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
534 GLuint stride,
532 trans_4_GLubyte_4ub_raw(GLubyte (t)[4], CONST void *Ptr, GLuint stride, ARGS ) argument
627 _math_trans_1f(GLfloat *to, CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
640 _math_trans_1ui(GLuint *to, CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
653 _math_trans_1ub(GLubyte *to, CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
667 _math_trans_4ub(GLubyte (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
681 _math_trans_4chan( GLchan (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
701 _math_trans_4us(GLushort (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
715 _math_trans_4f(GLfloat (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
729 _math_trans_4fn(GLfloat (to)[4], CONST void *ptr, GLuint stride, GLenum type, GLuint size, GLuint start, GLuint n ) argument
743 _math_trans_3fn(GLfloat (to)[3], CONST void *ptr, GLuint stride, GLenum type, GLuint start, GLuint n ) argument
[all...]
/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/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_blend.c473 const unsigned stride = lp_type_width(type)/8; local
489 src = align_malloc(stride, stride);
490 dst = align_malloc(stride, stride);
491 con = align_malloc(stride, stride);
492 res = align_malloc(stride, stride);
493 ref = align_malloc(stride, strid
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_blend.c473 const unsigned stride = lp_type_width(type)/8; local
489 src = align_malloc(stride, stride);
490 dst = align_malloc(stride, stride);
491 con = align_malloc(stride, stride);
492 res = align_malloc(stride, stride);
493 ref = align_malloc(stride, strid
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddct16x16_test.cc258 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
259 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
260 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
262 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
268 void fdct16x16_ref(const int16_t *in, tran_low_t *out, int stride, argument
270 vp9_fdct16x16_c(in, out, stride);
273 void idct16x16_ref(const tran_low_t *in, uint8_t *dest, int stride, argument
275 vp9_idct16x16_256_add_c(in, dest, stride);
278 void fht16x16_ref(const int16_t *in, tran_low_t *out, int stride, argument
280 vp9_fht16x16_c(in, out, stride, tx_typ
283 iht16x16_ref(const tran_low_t *in, uint8_t *dest, int stride, int tx_type) argument
289 idct16x16_10(const tran_low_t *in, uint8_t *out, int stride) argument
293 idct16x16_12(const tran_low_t *in, uint8_t *out, int stride) argument
297 idct16x16_10_ref(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
302 idct16x16_12_ref(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
307 iht16x16_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
311 iht16x16_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
610 RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) argument
613 RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) argument
677 RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) argument
680 RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) argument
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec.c540 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) { argument
544 if (needs_filter(p + i, stride, thresh2)) {
545 do_filter2(p + i, stride);
550 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) { argument
554 if (needs_filter(p + i * stride, 1, thresh2)) {
555 do_filter2(p + i * stride, 1);
560 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) { argument
563 p += 4 * stride;
564 SimpleVFilter16(p, stride, thresh);
568 static void SimpleHFilter16i(uint8_t* p, int stride, in argument
612 VFilter16(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
617 HFilter16(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
623 VFilter16i(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
632 HFilter16i(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
642 VFilter8(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
648 HFilter8(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
654 VFilter8i(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
660 HFilter8i(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
[all...]
/external/webp/src/dsp/
H A Ddec.c540 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) { argument
544 if (needs_filter(p + i, stride, thresh2)) {
545 do_filter2(p + i, stride);
550 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) { argument
554 if (needs_filter(p + i * stride, 1, thresh2)) {
555 do_filter2(p + i * stride, 1);
560 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) { argument
563 p += 4 * stride;
564 SimpleVFilter16(p, stride, thresh);
568 static void SimpleHFilter16i(uint8_t* p, int stride, in argument
612 VFilter16(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
617 HFilter16(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
623 VFilter16i(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
632 HFilter16i(uint8_t* p, int stride, int thresh, int ithresh, int hev_thresh) argument
642 VFilter8(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
648 HFilter8(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
654 VFilter8i(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
660 HFilter8i(uint8_t* u, uint8_t* v, int stride, int thresh, int ithresh, int hev_thresh) argument
[all...]
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp552 void ContextArray::bind (int attribNdx, int offset, int size, InputType inputType, OutputType outType, bool normalized, int stride)
560 m_stride = stride;
1342 static char* generateArray (int seed, GLValue min, GLValue max, int count, int componentCount, int stride, Array::InputType type);
1343 static char* generateQuads (int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive, Array::InputType type, GLValue min, GLValue max);
1344 static char* generatePerQuad (int seed, int count, int componentCount, int stride, Array::Primitive primitive, Array::InputType type, GLValue min, GLValue max);
1348 static char* createQuads (int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive, T min, T max);
1350 static char* createPerQuads (int seed, int count, int componentCount, int stride, Array::Primitive primitive, T min, T max);
1351 static char* createQuadsPacked (int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive);
1425 char* RandomArrayGenerator::generateArray (int seed, GLValue min, GLValue max, int count, int componentCount, int stride, Array::InputType type)
1432 if (stride
[all...]

Completed in 595 milliseconds

1234567891011>>