HomeSort by relevance Sort by last modified time
    Searched full:stride (Results 1 - 25 of 2281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/host/libs/GLESv1_dec/
gl.addon 1 GL_ENTRY(void, glVertexPointerOffset, GLint size, GLenum type, GLsizei stride, GLuint offset)
2 GL_ENTRY(void, glColorPointerOffset, GLint size, GLenum type, GLsizei stride, GLuint offset)
3 GL_ENTRY(void, glNormalPointerOffset, GLenum type, GLsizei stride, GLuint offset)
4 GL_ENTRY(void, glPointSizePointerOffset, GLenum type, GLsizei stride, GLuint offset)
5 GL_ENTRY(void, glTexCoordPointerOffset, GLint size, GLenum type, GLsizei stride, GLuint offset)
7 GL_ENTRY(void, glVertexPointerData, GLint size, GLenum type, GLsizei stride, void * data, GLuint datalen)
8 GL_ENTRY(void, glColorPointerData, GLint size, GLenum type, GLsizei stride, void * data, GLuint datalen)
9 GL_ENTRY(void, glNormalPointerData, GLenum type, GLsizei stride, void * data, GLuint datalen)
10 GL_ENTRY(void, glTexCoordPointerData, GLint size, GLenum type, GLsizei stride, void * data, GLuint datalen)
11 GL_ENTRY(void, glPointSizePointerData, GLenum type, GLsizei stride, void * data, GLuint datalen
    [all...]
GLDecoder.h 39 static void gl_APIENTRY s_glVertexPointerData(void *self, GLint size, GLenum type, GLsizei stride, void *data, GLuint datalen);
40 static void gl_APIENTRY s_glVertexPointerOffset(void *self, GLint size, GLenum type, GLsizei stride, GLuint offset);
42 static void gl_APIENTRY s_glColorPointerData(void *self, GLint size, GLenum type, GLsizei stride, void *data, GLuint datalen);
43 static void gl_APIENTRY s_glColorPointerOffset(void *self, GLint size, GLenum type, GLsizei stride, GLuint offset);
45 static void gl_APIENTRY s_glTexCoordPointerData(void *self, GLint unit, GLint size, GLenum type, GLsizei stride, void *data, GLuint datalen);
46 static void gl_APIENTRY s_glTexCoordPointerOffset(void *self, GLint size, GLenum type, GLsizei stride, GLuint offset);
48 static void gl_APIENTRY s_glNormalPointerData(void *self, GLenum type, GLsizei stride, void *data, GLuint datalen);
49 static void gl_APIENTRY s_glNormalPointerOffset(void *self, GLenum type, GLsizei stride, GLuint offset);
51 static void gl_APIENTRY s_glPointSizePointerData(void *self, GLenum type, GLsizei stride, void *data, GLuint datalen);
52 static void gl_APIENTRY s_glPointSizePointerOffset(void *self, GLenum type, GLsizei stride, GLuint offset)
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
idct_blk_sse2.c 23 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*4
    [all...]
idct_blk_mmx.c 28 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);
    [all...]
  /external/eigen/doc/snippets/
Map_general_stride.cpp 3 cout << Map<MatrixXi, 0, Stride<Dynamic,2> >
4 (array, 3, 3, Stride<Dynamic,2>(8, 2))
Tutorial_Map_rowmajor.cpp 5 cout << "Row-major using stride:\n" <<
6 Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
Map_inner_stride.cpp 4 (array, 6) // the inner stride has already been passed as template parameter
  /external/libvpx/libvpx/vp8/common/
idct_blk.c 16 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);
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
idct_blk_v6.c 17 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);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_vbuf.c 126 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/
sp_prim_vbuf.c 150 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/
lp_setup_vbuf.c 126 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/
sp_prim_vbuf.c 150 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/libvpx/libvpx/vp8/common/mips/dspr2/
idct_blk_dspr2.c 18 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 - 8
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
idct_blk_neon.c 18 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);
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSUtils.java 38 int stride, int skip) {
40 for (int i = 0; i < array.length / stride; i++) {
41 for (int j = 0; j < stride; j++) {
42 if (j >= stride - skip)
43 array[i * stride + j] = 0;
45 array[i * stride + j] = r.nextFloat() * factor + offset;
58 int stride, int skip) {
60 for (int i = 0; i < array.length / stride; i++) {
61 for (int j = 0; j < stride; j++) {
62 if (j >= stride - skip
    [all...]
  /external/e2fsprogs/tests/m_raid_opt/
script 3 MKE2FS_OPTS="-R stride=13 -O sparse_super -g 1024"
  /external/eigen/Eigen/src/Core/
Stride.h 15 /** \class Stride
22 * It holds two values: the inner stride and the outer stride.
24 * The inner stride is the pointer increment between two consecutive entries within a given row of a
27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
34 * \param _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
35 * \param _InnerStrideAtCompileTime the inner stride, or Dynamic if you want to specify it at runtime.
44 class Stride
54 Stride()
61 Stride(Index outerStride, Index innerStride
    [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...]
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
Android22Workaround.java 6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
11 stride,
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSUtils.java 38 int stride, int skip) {
40 for (int i = 0; i < array.length / stride; i++) {
41 for (int j = 0; j < stride; j++) {
42 if (j >= stride - skip)
43 array[i * stride + j] = 0;
45 array[i * stride + j] = r.nextFloat() * factor + offset;
58 int stride, int skip) {
60 for (int i = 0; i < array.length / stride; i++) {
61 for (int j = 0; j < stride; j++) {
62 if (j >= stride - skip
    [all...]
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_short_idct32x32_1_add_neon.asm 20 LD_16x8 $src, $stride
21 vld1.8 {q8}, [$src], $stride
22 vld1.8 {q9}, [$src], $stride
23 vld1.8 {q10}, [$src], $stride
24 vld1.8 {q11}, [$src], $stride
25 vld1.8 {q12}, [$src], $stride
26 vld1.8 {q13}, [$src], $stride
27 vld1.8 {q14}, [$src], $stride
28 vld1.8 {q15}, [$src], $stride
56 ST_16x8 $dst, $stride
    [all...]
  /external/chromium_org/ui/surface/
transport_dib.cc 13 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/
vp9_dct.h 16 int stride);
19 int stride);
22 int stride);
  /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...]

Completed in 2797 milliseconds

1 2 3 4 5 6 7 8 91011>>