HomeSort by relevance Sort by last modified time
    Searched refs:row_stride (Results 1 - 25 of 39) sorted by null

1 2

  /packages/apps/Gallery2/jni/filters/
edge.c 39 int row_stride = 4 * width; local
42 int buf_len = 2 * row_stride;
56 int loc = j * row_stride + k * 4;
62 tmp += *(ptr + (loc - row_stride + 4 + l));
64 tmp += *(ptr + (loc + row_stride + 4 + l));
65 tmp -= *(ptr + (loc - row_stride - 4 + l));
67 tmp -= *(ptr + (loc + row_stride - 4 + l));
76 tmp -= *(ptr + (loc - row_stride - 4 + l));
77 tmp -= *(ptr + (loc - row_stride + l)) * 2.0f;
78 tmp -= *(ptr + (loc - row_stride + 4 + l))
    [all...]
  /external/libjpeg-turbo/
example.c 93 int row_stride; /* physical row width in image buffer */ local
154 row_stride = image_width * 3; /* JSAMPLEs per row in image_buffer */
161 row_pointer[0] = & image_buffer[cinfo.next_scanline * row_stride];
298 int row_stride; /* physical row width in output buffer */ local
361 row_stride = cinfo.output_width * cinfo.output_components;
364 ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);
379 put_scanline_someplace(buffer[0], row_stride);
  /external/libvncserver/client_examples/
ppmtest.c 22 int row_stride=client->width*bpp; local
44 for(j=0;j<client->height*row_stride;j+=row_stride)
  /packages/services/BuiltInPrintService/jni/plugins/genPCLm/src/
genJPEGStrips.cpp 107 int row_stride; // physical row width in image buffer local
108 row_stride = image_width * cinfo.input_components; // JSAMPLEs per row in imageBuffer
112 row_pointer[0] = &imageBuffer[cinfo.next_scanline * row_stride];
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 95 row_stride = width * bpp;
98 row_size = row_stride;
105 if (box.bottom * row_stride > total_size ||
118 total_size = (box.bottom - box.top) * row_stride;
120 data = pixels + box.top * row_stride + box.left * pixel_stride;
130 row += row_stride, dst += row_size) {
144 int row_stride; member in struct:Bitmap
181 row += bmp.row_stride) {
215 row += bmp.row_stride, ++y) {
  /packages/apps/Camera2/jni/
jpegutil.h 97 int row_stride; member in struct:jpegutil::Plane
229 int plane_start = startX * plane_.pixel_stride + startY * plane_.row_stride;
231 int plane_end = endX * plane_.pixel_stride + endY * plane_.row_stride;
234 int stride = dx * plane_.pixel_stride + dy * plane_.row_stride;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_sampler.c 256 uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS]; local
283 row_stride[j] = lp_tex->row_stride[j];
296 row_stride[0] = lp_tex->row_stride[0];
305 row_stride, img_stride, data);
lp_texture.h 90 unsigned row_stride[LP_MAX_TEXTURE_LEVELS]; member in struct:llvmpipe_resource
169 return lpr->row_stride[level];
lp_jit.h 56 uint32_t row_stride[LP_MAX_TEXTURE_LEVELS]; member in struct:lp_jit_texture
lp_tex_sample.c 154 LP_LLVM_TEXTURE_MEMBER(row_stride, LP_JIT_TEXTURE_ROW_STRIDE, FALSE)
249 sampler->dynamic_state.base.row_stride = lp_llvm_texture_row_stride;
lp_texture.c 140 lpr->row_stride[level] = align(nblocksx * block_size, 16);
142 lpr->img_stride[level] = lpr->row_stride[level] * nblocksy;
226 &lpr->row_stride[0] );
236 memset(map, 0, height * lpr->row_stride[0]);
510 &lpr->row_stride[0]);
641 pt->stride = lprex->row_stride[level];
    [all...]
lp_jit.c 94 LP_CHECK_MEMBER_OFFSET(struct lp_jit_texture, row_stride,
lp_setup.c 672 jit_tex->row_stride[j] = lp_tex->row_stride[j];
684 jit_tex->row_stride[j] = 0;
698 jit_tex->row_stride[0] = lp_tex->row_stride[0];
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.h 50 uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS]; member in struct:draw_jit_texture
296 uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS],
draw_llvm_sample.c 149 DRAW_LLVM_TEXTURE_MEMBER(row_stride, DRAW_JIT_TEXTURE_ROW_STRIDE, FALSE)
239 sampler->dynamic_state.base.row_stride = draw_llvm_texture_row_stride;
draw_context.h 157 uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS],
  /external/mesa3d/src/gallium/tests/graw/
graw_util.h 224 const int row_stride = width * util_format_get_blocksize(format); local
225 const int image_bytes = row_stride * height;
253 row_stride,
  /external/libpng/
pngwrite.c 1499 png_int_32 row_stride; member in struct:__anon24034
    [all...]
  /external/pdfium/third_party/libpng16/
pngwrite.c 1499 png_int_32 row_stride; member in struct:__anon28611
    [all...]
  /external/skia/third_party/libpng/
pngwrite.c 1499 png_int_32 row_stride; member in struct:__anon29925
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.cc 46 int row_stride = src_stride << 1; local
90 IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
103 src_ptr += row_stride;
119 int row_stride = src_stride << 1; local
140 IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
153 src_ptr += row_stride;
171 int row_stride = src_stride << 2; local
204 if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(row_stride, 4) &&
217 src_ptr += row_stride;
231 int row_stride = src_stride << 2 local
    [all...]
scale_argb.cc 40 int row_stride = src_stride * (dy >> 16); local
85 src_argb += row_stride;
102 int row_stride = src_stride * (dy >> 16); local
131 src_argb += row_stride;
148 int row_stride = (dy >> 16) * src_stride; local
181 src_argb += row_stride;
  /external/libyuv/files/source/
scale.cc 52 int row_stride = src_stride << 1; local
108 IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
135 src_ptr += row_stride;
156 int row_stride = src_stride << 1; local
181 IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
194 src_ptr += row_stride;
216 int row_stride = src_stride << 2; local
251 if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(row_stride, 4) &&
272 src_ptr += row_stride;
290 int row_stride = src_stride << 2 local
    [all...]
scale_argb.cc 47 int row_stride = src_stride * (dy >> 16); local
120 src_argb += row_stride;
144 int row_stride = src_stride * (dy >> 16); local
177 src_argb += row_stride;
201 int row_stride = (dy >> 16) * src_stride; local
246 src_argb += row_stride;
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 689 const Index row_stride = 1, const Index col_stride = 1,
692 return TensorImagePatchOp<Dynamic, Dynamic, const Derived>(derived(), patch_rows, patch_cols, row_stride, col_stride,
    [all...]

Completed in 700 milliseconds

1 2