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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/winsys/sw/android/
android_sw_winsys.h 41 int stride; member in struct:android_winsys_handle
  /external/mesa3d/src/gallium/winsys/sw/wayland/
wayland_sw_winsys.h 34 unsigned stride; member in struct:winsys_handle
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
stride.h 13 cloog_int_t stride; /**< The actual stride. */ member in struct:cloogstride
20 CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset);
21 CloogStride *cloog_stride_alloc_from_constraint(cloog_int_t stride,
23 CloogStride *cloog_stride_copy(CloogStride *stride);
24 void cloog_stride_free(CloogStride *stride);
27 int level, CloogStride *stride);
loop.h 51 * block, the stride is 1 (i.e. there is no stride), block is necessarily not
55 * (the last one: outer dimensions being considered as parameters), the stride
57 * 'stride' must be considered between integral point, the first integral
68 CloogStride *stride; /**< If not NULL, stride information on iterator member in struct:cloogloop
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
stride.h 13 cloog_int_t stride; /**< The actual stride. */ member in struct:cloogstride
20 CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset);
21 CloogStride *cloog_stride_alloc_from_constraint(cloog_int_t stride,
23 CloogStride *cloog_stride_copy(CloogStride *stride);
24 void cloog_stride_free(CloogStride *stride);
27 int level, CloogStride *stride);
  /development/ndk/platforms/android-14/include/android/
native_window.h 47 int32_t stride; member in struct:ANativeWindow_Buffer
  /development/ndk/platforms/android-9/include/android/
native_window.h 47 int32_t stride; member in struct:ANativeWindow_Buffer
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 41 uint32_t stride; member in struct:android::StreamBuffer
51 uint32_t stride; member in struct:android::Stream
58 uint32_t stride; member in struct:android::ReprocessStream
  /external/compiler-rt/test/tsan/
bench_shadow_flush.cc 22 uptr stride = kSmallPage; local
24 stride = (uptr)atoi(argv[2]) << 10;
38 for (uptr off = 0; off < mem_size; off += stride) {
  /external/harfbuzz_ng/util/
helper-cairo-ansi.cc 59 unsigned int stride = cairo_image_surface_get_stride (surface); local
77 data += stride / 4;
85 const uint32_t *row = data + (height - 1) * stride / 4;
98 ansi_print_image_rgb24 (data, width, height, stride / 4);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btMultimaterialTriangleMeshShape.h 42 int stride; local
56 stride,
75 int stride; local
89 stride,
  /external/libvpx/libvpx/test/
vp8_denoiser_sse2_test.cc 48 const int stride = 16; local
82 mc_avg_block, stride, avg_block_c, stride, sig_block_c, stride,
86 mc_avg_block, stride, avg_block_sse2, stride, sig_block_sse2, stride,
92 EXPECT_EQ(avg_block_c[h * stride + w], avg_block_sse2[h * stride + w]);
98 mc_avg_block, stride, avg_block_c, stride, sig_block_c, stride
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 129 unsigned stride = draw->pipeline.vertex_stride; local
133 verts += stride;
  /external/mesa3d/src/gallium/auxiliary/util/
u_linear.h 55 unsigned stride; member in struct:pipe_tile_info
97 if (t->stride != t->block.size * t->cols * t->tiles_x)
100 if (t->size < t->stride * t->rows * t->tiles_y)
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.h 49 unsigned stride[SP_MAX_TEXTURE_2D_LEVELS]; member in struct:softpipe_resource
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_winsys.h 47 unsigned stride; member in struct:i915_sw_buffer
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_array.h 37 int stride, fields, type; member in struct:nouveau_array
48 nouveau_init_array(struct nouveau_array *a, int attr, int stride,
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_span.c 59 int stride; local
66 &map, &stride);
69 rrb->base.RowStride = stride;
  /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...]
  /external/opencv3/modules/flann/include/opencv2/flann/
matrix.h 53 size_t stride; member in class:cvflann::Matrix
56 Matrix() : rows(0), cols(0), stride(0), data(NULL)
61 rows(rows_), cols(cols_), stride(stride_), data(data_)
63 if (stride==0) stride = cols;
82 return data+index*stride;
  /frameworks/native/include/android/
native_window.h 69 int32_t stride; member in struct:ANativeWindow_Buffer
  /frameworks/native/services/surfaceflinger/RenderEngine/
Mesh.cpp 34 size_t stride = vertexSize + texCoordSize; local
35 size_t remainder = (stride * vertexCount) / vertexCount;
36 // Since all of the input parameters are unsigned, if stride is less than
38 // will be equal to stride as long as stride * vertexCount doesn't overflow.
39 if ((stride < vertexSize) || (remainder != stride)) {
51 mVertices = new float[stride * vertexCount];
52 mStride = stride;
  /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...]
  /packages/apps/Gallery2/jni/filters/
kmeans.cc 51 int stride = 4; local
55 unsigned char finalCentroids[k * stride];
59 stride, iterations, s);
64 unsigned char nextCentroids[k * stride];
68 dimension, stride, iterations, finalCentroids);
73 applyCentroids<unsigned char, int>(k, nextCentroids, dst, len, dimension, stride);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
slice_array.h 50 * specified by three parameters: start offset, size, and stride. The
53 * Stride is the distance between each successive array element to include
57 * and stride 2, the subset consists of array elements 1, 3, and 5.
70 * @param __s Stride between array elements.
78 /// Return array stride of slice.
79 size_t stride() const;
84 size_t _M_st; // stride unit
106 slice::stride() const function in class:slice
202 : _M_sz(__s.size()), _M_stride(__s.stride()),

Completed in 981 milliseconds

1 2 3 4 5 6 7 8 91011>>