Searched refs:stride (Results 1 - 25 of 1128) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Didct_blk_v6.c17 int stride, char *eobs)
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride);
15 vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
61 vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Didct_blk_neon.c18 unsigned char *dst, int stride);
20 unsigned char *dst, int stride);
25 int stride, char *eobs)
34 idct_dequant_full_2x_neon (q, dq, dst, stride);
36 idct_dequant_0_2x_neon (q, dq[0], dst, stride);
42 idct_dequant_full_2x_neon (q+32, dq, dst+8, stride);
44 idct_dequant_0_2x_neon (q+32, dq[0], dst+8, stride);
47 dst += 4*stride;
55 int stride, char *eobs)
60 idct_dequant_full_2x_neon (q, dq, dstu, stride);
23 vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
52 vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/clang/test/CodeGen/
H A Dinline-asm-mrv.c5 int stride, int h) {
9 : "r" ((long)stride));
4 sad16_sse2(void *v, unsigned char *blk2, unsigned char *blk1, int stride, int h) argument
/external/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_sse2.c23 unsigned char *dst, int stride, char *eobs)
32 vp8_idct_dequant_full_2x_sse2 (q, dq, dst, stride);
34 vp8_idct_dequant_0_2x_sse2 (q, dq, dst, stride);
39 vp8_idct_dequant_full_2x_sse2 (q+32, dq, dst+8, stride);
41 vp8_idct_dequant_0_2x_sse2 (q+32, dq, dst+8, stride);
44 dst += stride*4;
51 unsigned char *dstu, unsigned char *dstv, int stride, char *eobs)
56 vp8_idct_dequant_full_2x_sse2 (q, dq, dstu, stride);
58 vp8_idct_dequant_0_2x_sse2 (q, dq, dstu, stride);
61 dstu += stride*
21 vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
49 vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
H A Didct_blk_mmx.c28 unsigned char *dst, int stride, char *eobs)
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride);
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride);
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride);
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride,
47 dst+4, stride);
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride);
55 vp8_dc_only_idct_add_mmx (q[32]*dq[0], dst+8, stride,
56 dst+8, stride);
26 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
75 vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dsparse-array.js34 var stride = 500;
37 array[i * stride] = i;
/external/v8/test/mjsunit/
H A Dsparse-array.js34 var stride = 500;
37 array[i * stride] = i;
/external/libvpx/libvpx/vp8/common/
H A Didct_blk.c16 unsigned char *dest, int stride);
23 unsigned char *dst, int stride, char *eobs)
32 vp8_dequant_idct_add_c (q, dq, dst, stride);
35 vp8_dc_only_idct_add_c (q[0]*dq[0], dst, stride, dst, stride);
43 dst += 4*stride - 16;
49 unsigned char *dstu, unsigned char *dstv, int stride, char *eobs)
58 vp8_dequant_idct_add_c (q, dq, dstu, stride);
61 vp8_dc_only_idct_add_c (q[0]*dq[0], dstu, stride, dstu, stride);
21 vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
47 vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Didct_blk_dspr2.c18 unsigned char *dst, int stride, char *eobs)
27 vp8_dequant_idct_add_dspr2(q, dq, dst, stride);
30 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dst, stride, dst, stride);
38 dst += 4 * stride - 16;
44 unsigned char *dstu, unsigned char *dstv, int stride, char *eobs)
53 vp8_dequant_idct_add_dspr2(q, dq, dstu, stride);
56 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstu, stride, dstu, stride);
64 dstu += 4 * stride
16 vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
42 vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
H A Ddequantize_dspr2.c18 unsigned char *dest, int stride)
27 vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
17 vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *dest, int stride) argument
/external/harfbuzz_ng/util/
H A Dansi-print.hh36 unsigned int stride);
/external/chromium_org/ui/surface/
H A Dtransport_dib.cc13 const size_t stride = skia::PlatformCanvasStrideForWidth(w); local
15 static_cast<size_t>(h) > (kMaxSize / stride)) {
19 return (stride * h) <= size_;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.h16 int stride);
19 int stride);
22 int stride);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup_vbuf.c126 int stride )
128 return (const_float4_ptr)((char *)vertex_buffer + index * stride);
138 const unsigned stride = setup->vertex_info->size * sizeof(float); local
152 get_vert(vertex_buffer, indices[i-0], stride) );
159 get_vert(vertex_buffer, indices[i-1], stride),
160 get_vert(vertex_buffer, indices[i-0], stride) );
167 get_vert(vertex_buffer, indices[i-1], stride),
168 get_vert(vertex_buffer, indices[i-0], stride) );
175 get_vert(vertex_buffer, indices[i-1], stride),
176 get_vert(vertex_buffer, indices[i-0], stride) );
337 const unsigned stride = setup->vertex_info->size * sizeof(float); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_prim_vbuf.c150 int stride )
152 return (cptrf4)((char *)vertex_buffer + index * stride);
164 const unsigned stride = softpipe->vertex_info_vbuf.size * sizeof(float); local
174 get_vert(vertex_buffer, indices[i-0], stride) );
181 get_vert(vertex_buffer, indices[i-1], stride),
182 get_vert(vertex_buffer, indices[i-0], stride) );
189 get_vert(vertex_buffer, indices[i-1], stride),
190 get_vert(vertex_buffer, indices[i-0], stride) );
197 get_vert(vertex_buffer, indices[i-1], stride),
198 get_vert(vertex_buffer, indices[i-0], stride) );
361 const unsigned stride = softpipe->vertex_info_vbuf.size * sizeof(float); local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_vbuf.c126 int stride )
128 return (const_float4_ptr)((char *)vertex_buffer + index * stride);
138 const unsigned stride = setup->vertex_info->size * sizeof(float); local
152 get_vert(vertex_buffer, indices[i-0], stride) );
159 get_vert(vertex_buffer, indices[i-1], stride),
160 get_vert(vertex_buffer, indices[i-0], stride) );
167 get_vert(vertex_buffer, indices[i-1], stride),
168 get_vert(vertex_buffer, indices[i-0], stride) );
175 get_vert(vertex_buffer, indices[i-1], stride),
176 get_vert(vertex_buffer, indices[i-0], stride) );
337 const unsigned stride = setup->vertex_info->size * sizeof(float); local
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_prim_vbuf.c150 int stride )
152 return (cptrf4)((char *)vertex_buffer + index * stride);
164 const unsigned stride = softpipe->vertex_info_vbuf.size * sizeof(float); local
174 get_vert(vertex_buffer, indices[i-0], stride) );
181 get_vert(vertex_buffer, indices[i-1], stride),
182 get_vert(vertex_buffer, indices[i-0], stride) );
189 get_vert(vertex_buffer, indices[i-1], stride),
190 get_vert(vertex_buffer, indices[i-0], stride) );
197 get_vert(vertex_buffer, indices[i-1], stride),
198 get_vert(vertex_buffer, indices[i-0], stride) );
361 const unsigned stride = softpipe->vertex_info_vbuf.size * sizeof(float); local
[all...]
/external/aac/libAACdec/src/
H A Dldfiltbank.h104 const int stride,
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/wayland/
H A Dwayland_sw_winsys.h34 unsigned stride; member in struct:winsys_handle
/external/mesa3d/src/gallium/winsys/sw/wayland/
H A Dwayland_sw_winsys.h34 unsigned stride; member in struct:winsys_handle
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DAndroid22Workaround.java6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){ argument
11 stride,
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec_neon.c74 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \
75 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \
76 "vld4.8 {" #c1"[1], " #c2"[1], " #c3"[1], " #c4"[1]}," #b2 "," #stride"\n" \
77 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \
78 "vld4.8 {" #c1"[3], " #c2"[3], " #c3"[3], " #c4"[3]}," #b2 "," #stride"\n" \
79 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \
80 "vld4.8 {" #c1"[5], " #c2"[5], " #c3"[5], " #c4"[5]}," #b2 "," #stride"\n" \
81 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \
82 "vld4.8 {" #c1"[7], " #c2"[7], " #c3"[7], " #c4"[7]}," #b2 "," #stride"\n"
84 #define STORE8x2(c1, c2, p, stride) \
97 SimpleVFilter16NEON(uint8_t* p, int stride, int thresh) argument
118 SimpleHFilter16NEON(uint8_t* p, int stride, int thresh) argument
144 SimpleVFilter16iNEON(uint8_t* p, int stride, int thresh) argument
152 SimpleHFilter16iNEON(uint8_t* p, int stride, int thresh) argument
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dfilters.c31 assert(stride >= width);
47 int width, int height, int stride,
59 PredictLine(in, preds - stride, out, 1, inverse);
62 preds += stride;
63 in += stride;
64 out += stride;
69 int stride, uint8_t* filtered_data) {
70 DoHorizontalFilter(data, width, height, stride, 0, filtered_data);
73 static void HorizontalUnfilter(int width, int height, int stride, argument
75 DoHorizontalFilter(data, width, height, stride,
46 DoHorizontalFilter(const uint8_t* in, int width, int height, int stride, int inverse, uint8_t* out) argument
68 HorizontalFilter(const uint8_t* data, int width, int height, int stride, uint8_t* filtered_data) argument
81 DoVerticalFilter(const uint8_t* in, int width, int height, int stride, int inverse, uint8_t* out) argument
102 VerticalFilter(const uint8_t* data, int width, int height, int stride, uint8_t* filtered_data) argument
107 VerticalUnfilter(int width, int height, int stride, uint8_t* data) argument
120 DoGradientFilter(const uint8_t* in, int width, int height, int stride, int inverse, uint8_t* out) argument
147 GradientFilter(const uint8_t* data, int width, int height, int stride, uint8_t* filtered_data) argument
152 GradientUnfilter(int width, int height, int stride, uint8_t* data) argument
164 EstimateBestFilter(const uint8_t* data, int width, int height, int stride) argument
[all...]
/external/webp/src/dsp/
H A Ddec_neon.c74 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \
75 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \
76 "vld4.8 {" #c1"[1], " #c2"[1], " #c3"[1], " #c4"[1]}," #b2 "," #stride"\n" \
77 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \
78 "vld4.8 {" #c1"[3], " #c2"[3], " #c3"[3], " #c4"[3]}," #b2 "," #stride"\n" \
79 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \
80 "vld4.8 {" #c1"[5], " #c2"[5], " #c3"[5], " #c4"[5]}," #b2 "," #stride"\n" \
81 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \
82 "vld4.8 {" #c1"[7], " #c2"[7], " #c3"[7], " #c4"[7]}," #b2 "," #stride"\n"
84 #define STORE8x2(c1, c2, p, stride) \
97 SimpleVFilter16NEON(uint8_t* p, int stride, int thresh) argument
118 SimpleHFilter16NEON(uint8_t* p, int stride, int thresh) argument
144 SimpleVFilter16iNEON(uint8_t* p, int stride, int thresh) argument
152 SimpleHFilter16iNEON(uint8_t* p, int stride, int thresh) argument
[all...]
/external/webp/src/utils/
H A Dfilters.c31 assert(stride >= width);
47 int width, int height, int stride,
59 PredictLine(in, preds - stride, out, 1, inverse);
62 preds += stride;
63 in += stride;
64 out += stride;
69 int stride, uint8_t* filtered_data) {
70 DoHorizontalFilter(data, width, height, stride, 0, filtered_data);
73 static void HorizontalUnfilter(int width, int height, int stride, argument
75 DoHorizontalFilter(data, width, height, stride,
46 DoHorizontalFilter(const uint8_t* in, int width, int height, int stride, int inverse, uint8_t* out) argument
68 HorizontalFilter(const uint8_t* data, int width, int height, int stride, uint8_t* filtered_data) argument
81 DoVerticalFilter(const uint8_t* in, int width, int height, int stride, int inverse, uint8_t* out) argument
102 VerticalFilter(const uint8_t* data, int width, int height, int stride, uint8_t* filtered_data) argument
107 VerticalUnfilter(int width, int height, int stride, uint8_t* data) argument
120 DoGradientFilter(const uint8_t* in, int width, int height, int stride, int inverse, uint8_t* out) argument
147 GradientFilter(const uint8_t* data, int width, int height, int stride, uint8_t* filtered_data) argument
152 GradientUnfilter(int width, int height, int stride, uint8_t* data) argument
164 EstimateBestFilter(const uint8_t* data, int width, int height, int stride) argument
[all...]

Completed in 922 milliseconds

1234567891011>>