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

1 2 3 4 5 6 7 8 91011>>

  /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/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/mesa3d/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/gallium/winsys/sw/wayland/
wayland_sw_winsys.h 34 unsigned stride; member in struct:winsys_handle
  /external/mesa3d/src/gallium/winsys/sw/wayland/
wayland_sw_winsys.h 34 unsigned stride; member in struct:winsys_handle
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_context_2d.h 22 uint32_t stride; member in struct:__anon12961
  /external/chromium_org/ppapi/cpp/
image_data.h 107 int32_t stride() const { return desc_.stride; } function in class:pp::ImageData
  /external/compiler-rt/test/tsan/
bench_shadow_flush.cc 21 uptr stride = kSmallPage; local
23 stride = (uptr)atoi(argv[2]) << 10;
34 for (uptr off = 0; off < mem_size; off += stride)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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);
  /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);
  /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 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/chromium_org/cc/resources/
texture_uploader_unittest.cc 125 const unsigned int stride = variable
129 bytes + (xoffset * bytes_per_pixel + (yoffset + row) * stride);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_util.c 129 unsigned stride = draw->pipeline.vertex_stride; local
133 verts += stride;
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_texture.h 49 unsigned stride[SP_MAX_TEXTURE_2D_LEVELS]; member in struct:softpipe_resource
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
i915_sw_winsys.h 47 unsigned stride; member in struct:i915_sw_buffer
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_span.c 59 int stride; local
66 &map, &stride);
69 rrb->base.RowStride = 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...]
  /external/chromium_org/third_party/webrtc/common_video/
plane.h 26 // CreateEmptyPlane - set allocated size, actual plane size and stride:
30 int CreateEmptyPlane(int allocated_size, int stride, int plane_size);
39 int Copy(int size, int stride, const uint8_t* buffer);
53 // Get stride value.
54 int stride() const {return stride_;} function in class:webrtc::Plane
plane_unittest.cc 22 int size, stride; local
24 EXPECT_EQ(0, plane.stride());
27 stride = 20;
28 EXPECT_EQ(-1, plane.CreateEmptyPlane(size, stride, 1));
29 EXPECT_EQ(-1, plane.CreateEmptyPlane(10, stride, size));
31 stride = 0;
32 EXPECT_EQ(-1, plane.CreateEmptyPlane(size, stride, size));
33 stride = 20;
34 EXPECT_EQ(0, plane.CreateEmptyPlane(size, stride, size));
36 EXPECT_EQ(stride, plane.stride())
43 int allocated_size, plane_size, stride; local
    [all...]
texture_video_frame.cc 84 int TextureVideoFrame::stride(PlaneType type) const { function in class:webrtc::TextureVideoFrame
  /external/chromium_org/ui/gfx/android/
java_bitmap.h 38 inline uint32_t stride() const { return stride_; } function in class:gfx::JavaBitmap

Completed in 672 milliseconds

1 2 3 4 5 6 7 8 91011>>