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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libwebp/dsp/
dec_neon.c 74 #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) \
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
filters.c 31 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,
75 DoHorizontalFilter(data, width, height, stride, 1, data)
    [all...]
filters.h 35 int stride, uint8_t* out);
36 typedef void (*WebPUnfilterFunc)(int width, int height, int stride,
40 // 'in' corresponds to a 2-dimensional pixel array of size (stride * height)
42 // 'stride' is number of bytes per scan line (with possible padding).
51 int width, int height, int stride);
  /external/webp/src/dsp/
dec_neon.c 74 #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) \
    [all...]
  /external/webp/src/utils/
filters.c 31 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,
75 DoHorizontalFilter(data, width, height, stride, 1, data)
    [all...]
filters.h 35 int stride, uint8_t* out);
36 typedef void (*WebPUnfilterFunc)(int width, int height, int stride,
40 // 'in' corresponds to a 2-dimensional pixel array of size (stride * height)
42 // 'stride' is number of bytes per scan line (with possible padding).
51 int width, int height, int stride);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CrossTest.java 56 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
57 float[] ref = new float[input_size * stride];
59 int idx= i * stride * 2;
60 int idxRef = i * (stride - skip);
61 ref[idxRef + 0] = in[idx+1] * in[idx+2+stride] - in[idx+2] * in[idx+1+stride];
62 ref[idxRef + 1] = in[idx+2] * in[idx+0+stride] - in[idx+0] * in[idx+2+stride];
63 ref[idxRef + 2] = in[idx+0] * in[idx+1+stride] - in[idx+1] * in[idx+0+stride];
    [all...]
  /external/chromium_org/media/base/
video_util.h 26 MEDIA_EXPORT void CopyYPlane(const uint8* source, int stride, int rows,
28 MEDIA_EXPORT void CopyUPlane(const uint8* source, int stride, int rows,
30 MEDIA_EXPORT void CopyVPlane(const uint8* source, int stride, int rows,
32 MEDIA_EXPORT void CopyAPlane(const uint8* source, int stride, int rows,
36 MEDIA_EXPORT void MakeOpaqueAPlane(int stride, int rows, VideoFrame* frame);
40 MEDIA_EXPORT void CopyPlane(size_t plane, const uint8* source, int stride,
83 int stride,
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_dotprod_tmp.h 31 /* Note - respects the stride of the output vector.
38 GLuint stride = coord_vec->stride; local
46 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
58 GLuint stride = coord_vec->stride; local
67 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
80 GLuint stride = coord_vec->stride; local
88 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride))
    [all...]
m_translate.h 40 * \param stride the source stride (in bytes) between elements
52 GLuint stride,
59 GLuint stride,
66 GLuint stride,
73 GLuint stride,
81 GLuint stride,
89 GLuint stride,
98 GLuint stride,
107 GLuint stride,
    [all...]
  /external/mesa3d/src/mesa/math/
m_dotprod_tmp.h 31 /* Note - respects the stride of the output vector.
38 GLuint stride = coord_vec->stride; local
46 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
58 GLuint stride = coord_vec->stride; local
67 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
80 GLuint stride = coord_vec->stride; local
88 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride))
    [all...]
m_translate.h 40 * \param stride the source stride (in bytes) between elements
52 GLuint stride,
59 GLuint stride,
66 GLuint stride,
73 GLuint stride,
81 GLuint stride,
89 GLuint stride,
98 GLuint stride,
107 GLuint stride,
    [all...]
  /frameworks/rs/tests/cppstrided/
compute.cpp 13 uint32_t stride = 1025; local
18 printf("stride must be greater than or equal to 1024\n");
21 stride = (uint32_t) tempStride;
40 uint32_t* buf = (uint32_t*) malloc(stride * numElems * sizeof(uint32_t));
48 *(buf+(stride*i)+ct) = (uint32_t)ct + (i * numElems);
52 ain->copy2DStridedFrom(buf, stride * sizeof(uint32_t));
56 aout->copy2DStridedTo(buf, stride * sizeof(uint32_t));
60 if (*(buf+(stride*i)+ct) != (uint32_t)(ct + (i * numElems)) * 2) {
61 printf("Mismatch at location %d, %d: %u\n", i, ct, *(buf+(stride*i)+ct));
67 printf("Test successful with %u stride!\n", stride)
    [all...]
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 40 uint32_t stride; member in struct:android::StreamBuffer
50 uint32_t stride; member in struct:android::Stream
57 uint32_t stride; member in struct:android::ReprocessStream
  /external/libvpx/libvpx/vp8/common/
dequantize.c 30 unsigned char *dest, int stride)
39 vp8_short_idct4x4llm_c(input, dest, stride, dest, stride);
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 166 img->stride[VPX_PLANE_Y] = img->stride[VPX_PLANE_ALPHA] = s;
167 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = s >> xcs;
211 img->img_data + x * img->bps / 8 + y * img->stride[VPX_PLANE_PACKED];
217 data + x + y * img->stride[VPX_PLANE_ALPHA];
218 data += img->h * img->stride[VPX_PLANE_ALPHA];
221 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
222 data += img->h * img->stride[VPX_PLANE_Y];
227 + (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]
    [all...]
  /packages/apps/Gallery2/jni/filters/
kmeans.h 26 inline void sum(T values[], int len, int dimension, int stride, N dst[]) {
32 for (x = 0; x < len; x+= stride) {
88 void initialPickHeuristicRandom(int k, T values[], int len, int dimension, int stride, T dst[],
91 num_vals = len / stride;
111 r *= stride;
115 cntr += stride;
123 inline int findClosest(T values[], T oldCenters[], int dimension, int stride, int pop_size) {
127 for (y = stride; y < pop_size; y+=stride) {
141 int calculateNewCentroids(int k, T values[], int len, int dimension, int stride, T oldCenters[]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/android/
android_sw_winsys.h 41 int stride; member in struct:android_winsys_handle
  /external/chromium_org/third_party/mesa/src/src/glx/
vertarr.c 49 __indirect_glColorPointerEXT(GLint size, GLenum type, GLsizei stride,
53 __indirect_glColorPointer(size, type, stride, pointer);
57 __indirect_glEdgeFlagPointerEXT(GLsizei stride,
61 __indirect_glEdgeFlagPointer(stride, pointer);
65 __indirect_glIndexPointerEXT(GLenum type, GLsizei stride,
69 __indirect_glIndexPointer(type, stride, pointer);
73 __indirect_glNormalPointerEXT(GLenum type, GLsizei stride, GLsizei count,
77 __indirect_glNormalPointer(type, stride, pointer);
81 __indirect_glTexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
85 __indirect_glTexCoordPointer(size, type, stride, pointer)
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/android/
android_sw_winsys.h 41 int stride; member in struct:android_winsys_handle
  /external/mesa3d/src/glx/
vertarr.c 49 __indirect_glColorPointerEXT(GLint size, GLenum type, GLsizei stride,
53 __indirect_glColorPointer(size, type, stride, pointer);
57 __indirect_glEdgeFlagPointerEXT(GLsizei stride,
61 __indirect_glEdgeFlagPointer(stride, pointer);
65 __indirect_glIndexPointerEXT(GLenum type, GLsizei stride,
69 __indirect_glIndexPointer(type, stride, pointer);
73 __indirect_glNormalPointerEXT(GLenum type, GLsizei stride, GLsizei count,
77 __indirect_glNormalPointer(type, stride, pointer);
81 __indirect_glTexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
85 __indirect_glTexCoordPointer(size, type, stride, pointer)
    [all...]
  /external/valgrind/main/VEX/test/
rounderr.c 41 my_mean1 (const double data[], size_t stride, const size_t size)
50 mean += (data[i * stride] - mean) / (i + 1);
56 my_mean2 (const double data[], size_t stride, const size_t size)
63 sum += data[i * stride];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/class.gslice/gslice.cons/
default.pass.cpp 24 assert(gs.stride().size() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/class.slice/cons.slice/
default.pass.cpp 24 assert(s.stride() == 0);
start_size_stride.pass.cpp 14 // slice(size_t start, size_t size, size_t stride);
24 assert(s.stride() == 2);

Completed in 1074 milliseconds

12 3 4 5 6 7 8 91011>>